Is there something that can fix parse/syntax errors?
I need something that can help because sometimes i cant find the error :\
Parse/Syntax Errors
Moderator: General Moderators
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
- Leviathan
- Forum Commoner
- Posts: 36
- Joined: Tue Sep 23, 2003 7:00 pm
- Location: Waterloo, ON (Currently in Vancouver, BC)
There's only one good way to fix syntax errors on your own: you. If you're at all serious about programming, you need to get used to doing that. Compilers/interpreters can't asume what you mean with a particular statement. They're dumb; all they can do is make sure that your code conforms to a well-defined set of language rules. A specific rule can be broken for more than one reason, so they can't determine exactly what's wrong and help you fix it. PHP does tell you where (at least on what line number) a particular error occurs; use that to help you locate the bug.