I am trying to define an array and am getting a "parse error" on the first line of the definition no matter what I do.
Each of the following variations, and many more besides, are generating the error:
$error_text = array(
1 => "Library file does not exist",
2 => "Could not connect to database server",
99 => "This is the last error in the list");
$error_text = array(1 => "Library file does not exist",
2 => "Could not connect to database server",
99 => "This is the last error in the list");
$error_text = array('1' => 'Library file does not exist',
'2' => 'Could not connect to database server',
'99' => 'This is the last error in the list');
Must be something obvious I'm missing. This is with PHP Version 4.2.3.
Very frustrating!