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