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

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