Issue
I need to find a way of debug my localhost php experiences. When coding, and since I'm a begginer most of times I make errors that return an Internal Server Error.
Is there any way of having some plugin or something that teels me where is the error? Per example something like: Error on line 54 or something similar.
Thanks
Solution
This is actually not possible with php, as it is not compiled. Better is to have a debugger that lets you step through your code line by line and shows you the state of your application. In PHP-world this module is called xdebug http://xdebug.org/
Answered By - Jojo
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.