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

?>

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.