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.
|