[snip] Is there something that has to be done to php so that it sees these variables? Is this an operating system issue? Anything else I should be looking at? [/snip]
register globals is off, so all of your variables are in the POST array $_POST['first'] $_POST['last'] etc. Replace all your variable references with the appropriate array references and you'll be off to the races. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php