ขอโค้ดลืมรหัสผ่าน แบบเจ้งผู้ใช้เลย ไม่ต้องส่งผ่านเมลหน่อยค่ะ
ใช้การ echo ค่าออกมาเลยครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorials</title>
</head>
<body>
<?php
mysql_connect("localhost","root","root");
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM member WHERE Username = '".trim($_POST['txtUsername'])."'
OR Email = '".trim($_POST['txtEmail'])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not Found Username or Email!";
}
else
{
$strMessage .= "Welcome : ".$objResult["Name"]."<br>";
$strMessage .= "Username : ".$objResult["Username"]."<br>";
$strMessage .= "Password : ".$objResult["Password"]."<br>";
$strMessage .= "=================================<br>";
echo $strMessage;
}
mysql_close();
?>
</body>
</html>
Date :
2015-11-05 09:11:27
By :
mr.win
ลืมรหัสผ่าน ให้แจ้งผู้ใช้เลย แล้วจะมีรหัสผ่านไปทำไมล่ะครับนั่น
ใครๆ ก็รีเควสของรหัสผ่านได้โดยตรง
Date :
2015-11-05 09:21:45
By :
NewbiePHP
นั่นซิ
Date :
2015-11-05 09:32:21
By :
mr.win
ขอความกรุณาช่วยแนะนำด้วยครับ
ผมลองทำดูแล้ว แต่ระบบแจ้งดังนี้
Your password send successful.
Send to mail : [email protected]
Fatal error: Call to undefined function email() in C:\AppServ\www\research\SendPassword.php on line 31
ซึ่งโค้ดบรรทัดที่ 31 คือ $flgSend = email($strTo,$strSubject,$strMessage,$strHeader);
และผมไม่เข้าใจบรรทัดนี้ด้วยครับ $strHeader .= "From: [email protected] \nReply-To: [email protected] ";
เครื่องของผม set เป็น client server โดยใช้งานผ่าน Localhost ครับ
Date :
2018-03-20 09:58:13
By :
สุนทร
ผมลองทำตามโค้ดดังกล่าว ที่แสดงให้เห็นรหัสผ่านเลย โดยไม่ต้องแจ้งส่งทางอีเมล์ ผมสามารถ run ได้ครับ
แต่หากต้องการให้แจ้งส่งทางอีเมล์ด้วย ต้องเขียนโค้ดอย่างไรครับ ขอความกรุณาช่วยแนะนำด้วยครับ
ขอบคุณมากครับ
Date :
2018-03-20 10:17:19
By :
สุนทร
ForgotPassword.php
<html>
<head>
<title>Test</title>
</head>
<body>
<form name="form1" method="post" action="SendPassword.php">
Forgot your password? (Input Username or Email)<br><br>
<table border="1" style="width: 300px">
<tbody>
<tr>
<td> Username</td>
<td>
<input name="username" type="text" id="username">
</td>
</tr>
<tr>
<td> Email</td>
<td><input name="email" type="text" id="email">
</td>
</tr>
</tbody>
</table>
<br>
<input type="submit" name="btnSubmit" value="Send Password">
</form>
</body>
</html>
SendPassword.php
[php]<html>
<head>
<title>Test</title>
</head>
<body>
<?php
mysql_connect("localhost","root","1234");
mysql_select_db("research");
$strSQL = "SELECT * FROM coordinator WHERE username = '".trim($_POST['username'])."'
OR Email = '".trim($_POST['email'])."' ";
$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["email"];
$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>
ผมเขียนโค้ดดังกล่าวข้างต้น เมื่อ Run แล้ว ระบบแจ้งว่า
Your password send successful.
Send to mail : [email protected]
เมื่อไปเปิดดูในอีเมล์แล้ว ปรากฏว่า ยังไม่มีการส่งครับ
ขอความกรุณาช่วยแนะนำด้วยครับ
Date :
2018-03-20 12:40:59
By :
สุนทร
ผมว่าแจ้งผู้ใช้เลยแบบนี้ก็เท่ดีนะ
แต่ว่าก็อาจจะมีเงื่อนไขนิดนึง
คุณเกิดวันที่เท่าไหร่
E-mail อะไร
โดยให้มันเช็คว่าข้อมูลตรงกันกับในระบบหรือป่าว ทั้ง 3 ข้อมูล
คือ
ชื่อผู้ใช้งาน
วันเดือนปีเกิด
E-mail
ถ้าเกิดว่าตรงกันก็แสดงรหัสผ่านให้ดู ฮ่า ๆๆ
คหสต.
Date :
2018-04-11 14:39:20
By :
nobetaking
Load balance : Server 05