This is the purposely created script to create an error:
<?php
ini_set('display_errors', TRUE);
if ($_POST['submit']) {
echo "The Postman has arrived!";
}else{
echo "No Post today!";
?>
Obviously, it's missing the final closing brace } so I am expecting an error. The problem is, it just produces a blank page. The following properties (I think these are the important ones for error reporting) are setup like this in my php.ini file:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT display_errors = On display_startup_errors = On
I'd appreciate any help you can give, this is driving me mad.
Thanks,
Sam.
Edited by supersword, 23 July 2007 - 04:53 AM.
