Out of the blue, am getting this error message on php4/apache/linux:
Fatal error: [] operator not supported for strings
referenced to this line of code (which is inside a function)
the line below worked for 3 months. Now, it chokes.
$error_flag is our global error array, and $zz and $num are just integers
if ($zz==0) $error_flag[] = sprintf("Please enter an amount for selection #%s (%s is invalid)", $num, $zz);
Thanks in advance.
Heath