|
|
|
สอบถามการใช้ while ร่วมกับ if ครับ คือ ลักษณะการทำงานของโปรแกรมทำงานตามขั้นตอนอย่างนี้ครับ |
|
|
|
|
|
|
|
$i มาจากไหนอะ
|
|
|
|
|
Date :
2012-10-18 15:45:31 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql = "select * from mytable ";
$query = mysql_query($sql);
while($rs=mysql_fetch_array($query))
{
if ($rs[NAME]=='BBBBB') {
$strTo = $rs[E_MAIL];
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\r\n"; // or UTF-8 //
$strHeader .= "From: Admin\r\nReply-To: [email protected]";
$strVar = "My Message";
$strMessage = "<h1>My Message</h1>";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
}
}
|
ประวัติการแก้ไข 2012-10-18 16:57:42
|
|
|
|
Date :
2012-10-18 16:57:10 |
By :
chaynuwong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|