View Single Post
  #2 (permalink)  
Old 03-15-2006, 08:54 AM
Easywebdev's Avatar
Easywebdev Easywebdev is offline
WebProWorld Veteran
 
Join Date: Apr 2004
Posts: 310
Easywebdev RepRank 1
Default

Most likely you are depending on global variables and looking for $email and $name and register_globals is off on you server.
You are using the post method for the form so your data is in the post global array. $_POST['email']; and $_POST['name'];
I would need to see the php and your variable names to debug it fully but most likely that is where you are going wrong.
Reply With Quote