|
Look at your code above. PHP markup highlight strings in red. Where you see a red echo that indicates that you have a previously opened single or double quote that has not been closed. The error will indicate on which line it detects that a failure happened, so it will be somewhere <= the line number in the error for a T_CONSTANT_ENCAPSED_STRING error. It ignores anything out of <?php?> blocks for line numbering.
|