Yeah .... these problems can be a pain to see ... but the problem isn't the separation of the lines ... it's in this bit.
The missing single quote makes PHP see something like ...
Code: Select all
'Time2]; echo "</font><br><font color='
... as the array index, so that semicolon is never seen, and because the closing array bracket never gets found it just continues along until it finds the next parsable command, which happens to be the echo on the next line.
At least, that's the way I visualize it when I come across these issues.
But I'd be interested to know if it does actually fix the issue.
Cheers.