Newbe here, at least with PHP. I have installed it on my PC at work, Win 2K and php version 4.3.0.
The problem that I am having is that I am getting errors which as similar to ones caused by register_globals = off. That is:
Notice: Use of undefined constant auth - assumed 'auth' in ...... on line 31
Notice: Undefined variable: action in ...... on line 65
However register_globals = on !! I checked php.ini and ran a quick script to verify this
<HTML>
<?php
phpinfo();
?>
</HTML>
The resulting page showed register_globals = On.
Does anyone have any suggestions where I went wrong?
Thanks
Bill