-
form help
PHP Code:
<?php
if ($_SERVER['REQUEST_METHOD'] != 'GET'){
$nam = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$mess = $_POST['message'];
mail("habbofuse******.com", $subject, $messig);
Header("Location: thankyou.php");
}
else
{
echo 'ERROR';
}
?>
can anyone tell me what the problem is with the above form handler for this form - http://www.hfuse.dots-hosting.com/form.htm
-
Are you sure that the form which brings the user to that handler has the correct names assigned to the text boxes?
-
If your having trouble with a PHP form, use Thybags form handler "/
- Dan