PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Is there a program thta can run a PHP script and tell you where the errors are. Kind of like Java compiler? Cause everytime I have a small error it takes me forever to find it. Thanks
what errors are coming up? ust ask about them here, you'll usually get a fast response.
Another good idea is to know PHP back-to-front (but not inside-out) read over the manual a billion times, you'll start to know exactly what the hel errors are real quick.
php -l scriptfilename.php will only check the syntax of the script. The output is pretty much like that from javac.
Consider using an IDE for php. Most of them show syntax and/or runtime errors and take you to the location in your source.
Take a look e.g. at viewtopic.php?t=3495