We’ve all encountered errors, especially during the synthesis of a new code. This is what a typical error looks like when you run it at a server at home:

Parse error: parse error in C:\directory\10_3.php on line 4

Here, we know that the error was a parse error and that it happened in a file called 10_3.php and it was on line 4. A parse error is typically just a missing semi-colon or a bracket. Nothing major, but it still triggers a fatal error. You can read all about the different errors and how to deal with them in the PHP manual or at this nifty Zend tutorial. I learned most of my PHP skills from that tutorial so read through it because it will definitely help you out.

More >