$stuff .= 'Hello World'; // BREAKS IN PHP 4.3.8 WHY???
$data = array('hello', 'world');
echo $data[2]; // ALSO BREAKS IN PHP 4.3.8
I do not understand why, all of a sudden, the following lines are breaking when I moved these lines from a PHP 4.3.2 environment, working just fine and dandy, suddenly spewing "undefined offset, undefined variable, undefined everything else" errors all over the place using PHP 4.3.8.
Is there a setting I can use to switch this off? I'll have to change several hundred lines of code otherwise.
Thanx
Phil