Hi all,
I've installed PHPlib on Win2K running PHP4 and Apache. My problem is that $HTTP_POST_VARS, $PHP_SELF, and $QUERY_STRING are all returning blank. Therefore, action="" in any form handling. Any suggestions?
Thanks.
~cw
PHP4.2 (for the first time) defaults to track_vars being off. You need to turn that on. How do you do that? I haven't a clue.
:-)
oops - I meant globals or something... see this thread:
http://www.phpbuilder.com/forum/read.php3?num=2&id=194809&loc=0&thread=194809
I encountered the same problem on apache for win and apache for linux. you have to change settings in php.ini. set register globals to ON and reduce error reporting (instead of all set to displaying only errors, not warnings. then restart your server. should work now
Thanks, WRFan! That worked perfectly!!