update page now

Voting

: three plus four?
(Example: nine)

The Note You're Voting On

M. T.
16 years ago
Be aware of using error control operator in statements before include() like this:

<?PHP

(@include("file.php"))
 OR die("Could not find file.php!");

?>

This cause, that error reporting level is set to zero also for the included file. So if there are some errors in the included file, they will be not displayed.

<< Back to user notes page

To Top