Hello i have one simple question i appreciate any help.
I have the code plugged into my website contact page but people just click send without entering any information and a blank email comes. How do i do it that they must enter text.
Here is the code below..
(i was unable to post "html" "head" & "body" in these < /> for the code below...u may email be i can send u the full code)
<?
$subject="From ".$_GET['your_name'];
$headers= "From: ".$_GET['your_email']."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail("support@XXXX.com", $subject, "
Message Sent
".$_GET['message']."
" , $headers);
echo ("Thank you, Your message was successfully sent!");
?>