Hi all, my feedback form is working for some users and for others, it's taking hella slow for them to send me a form. what is wrong with my code? my server is in my room. here is my sendmail code:
<?php
if (!isset($email) || !isset($message)) {
header( "Location: feedback.html" );
}
elseif (empty($email) || empty($message)) {
header( "Location: errorpage.html" );
}
else {
mail( "hnguyen@buzzabiz.com", "Feedback Form",
$message, "From: $name <$email>" );
header( "Location: thankyou.php" );
}
?>