Hello, I'm stumped. I'm getting this type of error and line 105 is and thats it. It keeps pointing at this tag and whatever line its on. I have never had this happen in the other pages. Your help is always appreciated.
"Parse error: parse error in /var/virtual/ on line 105"
John
Did you close your PHP script block before the tag?
presumably line 105 is also the last line of the file? in which case, check you've closed the last chucnk of php code.
as a general point, a parse error on line x will often originate from the expression prior to it..
-- rad
Yes, it looks good. All functions work, but this error.
Yes Rad, It is the last line. It appears that all the chunks are closed, I will make double check the code to make sure its being read right.
in which case it might be an unterminated string literal eating your final closing '?>'
It would probably be helpful if you posted your last 20 or 30 lines of cde so we can have a look at it.
Sounds like rad is on the right page with possible missing end quote on one of your strings.
This always happends to me and 99% of the time its because i have not closed an if statment or something like that, make sure you close any {
Count up all the { and make sure you have the same number as }
I third the notion that it's a missing " } ". I have had this problem a couple of times and that's what it always was.
Heh, I just spent half an hour on the same problem. I found one of my '}'s blocked by a '//' comment thingy.
How stupid 🙂