มีปัญหา PHP Forgot Lost Password and Sending Password to Mail เกี่ยวกับอันนี้อ่ะครับ ติดอะไรใครรู้ช่วยหน่อยครับ
เกิด จากการ Query ไม่ได้ เนื่องจาก $strSQL
Code (PHP)
$user = trim($_POST['txtUsername']);
$Emal = trim($_POST['txtEmail']);
$strSQL = "SELECT * FROM member WHERE Username='$user' OR Email='$Email' ";
echo $strSQL; /// ดูว่ามันได้อะไร แล้วเอาไปใช้ใน sql ดู
ถ้าไม่ได้ ก็ เปลี่ยนจาก POST เป็น GET ครับ
ประวัติการแก้ไข 2011-09-11 01:00:32
Date :
2011-09-11 00:58:29
By :
Professer
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\forgotpassword\SendPassword.php.php on line 12
Not Found Username or Email!
Date :
2011-09-11 01:03:21
By :
Professer
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorials</title>
</head>
<body>
<?
mysql_connect("localhost","root","123456");
mysql_select_db("member");
$strSQL =
$user = trim($_POST['txtUsername']);
$Email = trim($_POST['txtEmail']);
$strSQL = "SELECT * FROM member WHERE Username='$user' OR Email='$Email' ";
echo $strSQL;
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not Found Username or Email!";
}
else
{
echo "Your password send successful.<br>Send to mail : ".$objResult["Email"];
$strTo = $objResult["txtEmail"];
$strSubject = "Your Account information username and password.";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: [email protected] \nReply-To: [email protected] ";
$strMessage = "";
$strMessage .= "Welcome : ".$objResult["Name"]."<br>";
$strMessage .= "Username : ".$objResult["Username"]."<br>";
$strMessage .= "Password : ".$objResult["Password"]."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "ThaiCreate.Com<br>";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
}
mysql_close();
?>
</body>
</html>
ตรงที่ทำจุดเด่นอ่ะครับ เห็นไหมครับ ใช่Queryอย่างที่บอกไว้หรือเปล่าครับ
ประวัติการแก้ไข 2011-09-11 12:45:18 2011-09-11 12:53:19 2011-09-11 12:54:11 2011-09-11 12:55:42
Date :
2011-09-11 12:44:26
By :
banksarino
Load balance : Server 01