|
|
|
ส่ง email order โดยใส่ code sql กับพวก if else ไปด้วย ยังไงครับ |
|
|
|
|
|
|
|
จะต้องยัดข้อความพวกนี้ลงในตัวแปรให้หมดครับ ให้อยู่ในรุปแบบของ HTML ครับ
Code (PHP)
<?php
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\r\n"; // or UTF-8 //
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected]>\r\nReply-To: [email protected]";
$strVar = "My Message";
$strMessage = "
<h1>My Message</h1><br>
<table width='285' border='1'>
<tr>
<td><div align='center'><strong>My Message </strong></div></td>
<td><div align='center'><font color='red'>My Message</font></div></td>
<td><div align='center'><font size='2'>My Message</font></div></td> ";
for($i=0;$i<=100;$i++)
{
$strMessage .= "</tr>
<tr>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
</tr> ";
}
$strMessage .= "<tr>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
</tr>
</table>";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
จะได้ประมาณนี้ครับ
|
|
|
|
|
Date :
2016-10-27 13:35:56 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo $sql1;
ลองวิเคราะห์จาก SQL Query ครับ
|
|
|
|
|
Date :
2016-10-28 09:16:44 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|