can anyone tell me what the problem is with the above form handler for this form - http://www.hfuse.dots-hosting.com/form.htmPHP 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';
}
?>






Reply With Quote

