Take a look at the form that is getting submitted.. My guesse is that you are using the GET method rather than the POST method. The error indicates you are trying to access an array index that does not exsist.
Two ways to fix this would be change your $_POST to $_GET or goto the form and set method equal to post. ()
If not check the names of your form fields. The must match the names of the index you are using in the array.
I.E.
<?php
$_POST['email'];
?>
They must match
GliderPilot
Junior Poster in Training
86 posts since Sep 2006
Reputation Points: 8
Solved Threads: 4