Forum Moderators: coopster
The Windows server is saying that the variables are undefined. Is there anything extra I have to do to the form or the PHP script when they are on a Windows server?
$firstname = $HTTP_POST_VARS["firstname"]; or even
$firstname = $HTTP_GET_VARS["firstname"];
get it? If not read here
Predefined Variables [php.net]
I had some serious confusion the first time I started porting existing to many different server configs. I usually have a couple verions of most scripts now that depend on server config.
The first thing I do when working with a new server is phpinfo();
That gives me all of the config info and allows me to adjust accordingly.