php ส่งอีเมล์ และ ฝากข้อความบนเว็บ ทำไมถึงบันทึกข้อมูล mysql ไม่ได้ ช่วยบอกที
โดน spam เหรอครับ?
spam มัน confirm ข้อความได้ด้วยเหรอครับ ???
-----
ตอนบันทึก มันแจ้งไรมั้ยครับ หรือเด้งไป หน้า index.php เลยครับ?
$aql="insert into tb_message
Values (' ' ,' $name','$message','$save_date')";
ลองเปลี่ยนเป็น
$aql="insert into tb_message
Values ('' ,'$ name','$message','$save_date')";
Date :
2010-01-27 19:12:03
By :
yomaster
อะไรกันเนีย
Date :
2010-03-31 11:28:28
By :
ิw
Thank
Date :
2010-10-18 08:56:24
By :
artorne
Date :
2011-01-12 20:08:11
By :
5455454
Thank
Date :
2011-01-12 20:09:25
By :
อออออ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = $_POST["txtTo"];
$strSubject = $_POST["txtSubject"];
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: ".$_POST["txtFormName"]."<".$_POST["txtFormEmail"].">\nReply-To: ".$_POST["txtFormEmail"]."";
$strMessage = nl2br($_POST["txtDescription"]);
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
Go to : PHP Sending Email Contact Form
Date :
2011-03-20 23:07:00
By :
pongsakon
ขอบคุณ
Date :
2011-06-26 14:30:17
By :
เอก
Load balance : Server 02