Page 1 of 1

Parse line No

Posted: Sat Mar 20, 2004 8:46 am
by after_shox
Im getting a parse error on a line that has nothing on it ? I didnt think this was possible. But if theres nothing on the line how can i fix it ?

Posted: Sat Mar 20, 2004 9:46 am
by Buddha443556
When you have an error like this is usually a missing quotation mark or maybe you forgot to escape a quotation mark.

If you can't find it by a line by line review, heres two techniques you can try:

1. Comment out blocks of code to isolate the problem. Error disappears you found the block responsible.
2. Insert test pionts, simple echo 'TestPoint X', in the code to isolate the problem. Missing test points will be in the errors location usually.

Good luck