No Errors Shown
Posted: Mon Dec 19, 2005 2:03 pm
Hello:
I've followed the instructions to deploy PHP & Apache on a Win32 box per the following instructions:
http://www.php.net/manual/en/install.wi ... pache2.php
http://www.thesitewizard.com/archive/php4install.shtml
...and I can successfully read/write PHP apps. The problem I'm facing now is that if I have an error in my code, I don't see it display online? Instead, whenever/wherever I have a coding script error, I get a blank screen. For instance:
The following code works perfect:
However, if I enter the following:
...I get a blank screen when running the script in my browser. Is there a setting in my PHP.INI I have to set in order to see errors? Without it, it's very difficult to fix errors when I eventually get them 
Thanks
Lester
I've followed the instructions to deploy PHP & Apache on a Win32 box per the following instructions:
http://www.php.net/manual/en/install.wi ... pache2.php
http://www.thesitewizard.com/archive/php4install.shtml
...and I can successfully read/write PHP apps. The problem I'm facing now is that if I have an error in my code, I don't see it display online? Instead, whenever/wherever I have a coding script error, I get a blank screen. For instance:
The following code works perfect:
Code: Select all
<?PHP
echo phpinfo();
?>Code: Select all
<?PHP
echo phpinfo();
echo "notice I don't have a closing double quotes...
?>Thanks
Lester