I find all my hand coded php is unable to access mysql. I have not had a chance to look at it yet. I'm just posting this in case some else already has experienced this problem.
Anyone had any mysql /php issues since the upgrade to 4.3.10?
Collapse
X
-
Tags: None
-
Yes, I have had some minor problems since the PHP upgrade that involve ionCube encoded files.
Some features in PHP5 have been back-ported into 4.3.10 which have caused some problems in the ioncube loaders that I use on some licensed scripts. There is an updated loader available from www.ioncube.com which resolves the problems.
This only affects people that are using php scripts that have been encoded with ioncube. -
I am using an open source routine called getID3 to return info about mp3 files. It is throwing so many errors I am just remming it out and forgetting about it for now.
I noticed in my own code that
This no longer works when it is within a larger foreach loop:
foreach ($MyArrayOfArrays as $ASimpleArray)
{
x$ = $ASimpleArray['AColumnFromMySQL'];
}
It returns nothing in x$
But this does work:
foreach ($MyArrayOfArrays as $key => $ASimpleArray)
{
x$ = $ASimpleArray['AColumnFromMySQL'];
}
Weird!Comment
Comment