Ron Piggott wrote:
I am getting the parse error message

Parse error: parse error, unexpected T_STRING, expecting T_VARIABLE or
'$' line 121

(...)

++ii;
}

++i;
}
?>

Shouldn't you write:

++$ii;
}

++$i;
}
?>

:) ? It's the variable sign '$' what is missing here.

--
Ajree

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to