Hey, this should be an easy one...
A while back, when I was using PHP4 with IIS, I had a problem getting my PHP scripting to pickup the post data via GET and POST... I solved it by going into the php.ini and setting register_globals to On... problem solved...
Now Im working on PHP 5 with Apache - Im having the same problem, my scripts are definetley not picking up the posted variables, like $GET and $POST dont exists no matter how many times I submit... I have gone to the php.ini and changed the register_globals value to ON but still nothing is happening, have I missed anything out??
thanks in advance
:queasy:
CORRECTION:
globals are working, I can read the posted variables by calling them as normal variables... eg a textbox called bob can be accessed in the php page as $bob but I was using $GET['bob'] -- which doesnt work.... why is this??