<html> <head> <title>ThaiCreate.Com Tutorials</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="txtUsername" type="text" id="txtUsername"> </td> </tr> <tr> <td> Email</td> <td><input name="txtEmail" type="text" id="txtEmail"> </td> </tr> </tbody> </table> <br> <input type="submit" name="btnSubmit" value="Send Password"> </form> </body> </html>
<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 { 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>
Quote:$strTo = $objResult["txtEmail"];
Quote:$strHeader .= "From: [email protected]\nReply-To: [email protected]";
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง