Jump to content

PHP Error detector Program??


carefree

Recommended Posts

put the code between

<?php

?>

and save it as file.php

It should give an error if there is any.

Only if display_errors is enabled in the php.ini You're best of adding the following two lines at the top of your page you wish to debug:

<?php

error_reporting(E_ALL);
display_errors(1);

// your code here

?>

Yeah i would agree with the last two posts,

 

But i use a good free editor from http://www.mpsoftware.org/

 

I have the Pro version but the Personal version is free. If you have PHP on your computer you can set it up by point the debug system to your php.exe .. With that done they have a window for checking your php code.. If there are errors it will tell you, If not well then displays the output..

 

Andy

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.