Hello All, Any feedback would be very helpful.
I've worked the bug down to two things.
// issue one ---------------------------------------
The new box requires all variables to be declared. So if($i = "valid){} will return an erorr .. "undeclared variable i"
But, conversely $i =""; if($i = "valid){} will not throw an error because the variable is delcared.
// issue two ---------------------------------------
The old box allows for no quote in MySQL results: $row[myVar] works fine. On the new box that syntax returns an error (undefined index) and I need quotes: $row["myVar"] to make the script run.
The site is huge and variable are used all over, is there a way to use ini_set to make this work?
Thanks in advance!
-satch