Forum Moderators: coopster
Here is a List of Parser Tokens [php.net]
Looks like you made a mistake. ;)
Have you looked at line 171? What is it.
Have you looked at line 171? What is it.
Actually, given that it's probably a missing semi-colon, the question usually is "Have you looked in line *170*?" because the typical reason is code like this
170: $x = my_totally_rad_function($y)
171: echo $x;
The parser will find the error on 171, but the error is really on 170.
Tom
I was wondering if welcome_2_hell would repost and notice that there was actually no value for probable cause listed for his parse error. I was also hoping we would get a couple of lines and see the missing semi colon. ;)
Gotta love parse errors, most always our own fault and they most often drive us the craziest.