คือ ผมลอง หลายอย่างแล้วอะครับ เปิด Google ลองเอาโค๊ดมา มันก็ยังไม่ส่งเข้าให้ผมสักที
คือ อยากให้ พอดึง ข้อมูล มาได้ปุ๊บ ก็จะส่งเข้าเมล์เรา เลย
----
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้
<html>
<head>
<title>Retrieve data from database </title>
</head>
<body>
<?php
// Connect to database server
mysql_connect("localhost", "song", "1280") or die("Error connecting to database: ".mysql_error());
// Select database
mysql_select_db("songdb") or die(mysql_error());
// SQL query
$strSQL = "SELECT * FROM vip2 WHERE DATE(date) = DATE(NOW())";
// Execute the query (the recordset $rs contains the result)
$rs = mysql_query($strSQL);
// Loop the recordset $rs
while($row = mysql_fetch_array($rs)) {
// Write the value of the column FirstName and BirthDate
echo $row['ingame'] . " " . $row['vipend'] . "<br />";
//E-mail part
}
// Close the database connection
mysql_close();
?>
</body>
</html>
จะส่ง Email ผ่าน PHP ยังไงหรอครับ
คือ อยากให้ พอดึง ข้อมูล มาได้ปุ๊บ ก็จะส่งเข้าเมล์เรา เลย
----
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้