[PHP] IPlanet Webserver

2002-09-11 Thread Chris Boget
Do any of you guys have experience setting PHP up with the IPlanet webserver? We are trying it out (for a client) and we can't seem to get to so that PHP gets the POST or GET variables passed from a form and would like to talk with someone who's had experience working with or around this problem

Re: [PHP] IPlanet Webserver

2002-09-11 Thread Henrik Hudson
Make sure you're accessing your variables correctly as well. Remember, register_globals is now off by default, so you can't just access POST and GET vars by variable name, but insterad use $_POST[varname] or $_GET[varname] On Wednesday 11 September 2002 10:42, Chris Boget wrote: > Do any of you

Re: [PHP] IPlanet Webserver

2002-09-11 Thread Justin French
Instead of $myformvalue, try $_POST['myformvalue'] or $_GET['myformvalue']. Then slap yourself on the forhead for not looking in the manual and seeing what changes have been made to newer versions, or for not checking this lists' archives first, because this questions is asked DAILY, if not more f