i just installed php 4.3 with apache 1.3 on windows 2000.
for some reason form variables aren't being password between php scripts. like, if i put index?test=blah, $test has no value.
can anyone help?
either set register globals to on in your php.ini file, or, if you want to code the "right" way, call all POST variables as $POST['var_name'] and all GET variables (anything in the url) as $GET['var_name']
Cgraz
Yeah, that did the trick.
Thanks.