<?php /* add by kergrit(redthird.com) for compatible global variable off/on php.ini */ $email = $_POST['email']; $forget = $_POST['forget']; if(isset($forget) and $forget=="forget") { include("config.php") ; $result = mysql_query("select username from member where email='$email' ") or die("Err Database") ; $numrow = mysql_num_rows($result) ; if($numrow==0) { $status = "<center><font size='3' color='red'><b>ไม่มีชื่อ $email อยู่ในฐานข้อมูล</b></font></center>" ; } else { $result = mysql_query("select * from member where email='$email' ") ; $dbarr = mysql_fetch_array($result) ; $email = $dbarr['email'] ; $name = $dbarr['name']; if($result) { require_once("PHPMailer/class.phpmailer-lite.php"); $mail = new PHPMailer(); $mail->IsHTML(true); $mail->IsSMTP(); $mail->Mailer = "smtp"; $mail->SMTPAuth = true; // enable SMTP authentication $mail->SMTPSecure = "ssl"; // sets the prefix to the servier $mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server $mail->Port = 25; // set the SMTP port for the GMAIL server $mail->Username = "[email protected]"; // GMAIL username $mail->Password = "chutimautit"; // GMAIL password $mail->From = "[email protected]"; // "[email protected]"; //$mail->AddReplyTo = "[email protected]"; // Reply $mail->FromName = "Mainboard Service"; // set from Name $mail->Subject = "รหัสผ่านในการเข้าสู่ระบบสมาชิกของคุณ"; $mail->Body = "สวัสดี คุณ $dbarr[name] <br><br> Username ในการเข้าสู่ระบบของคุณ : $dbarr[username]<br> Password ในการเข้าสู่ระบบของคุณ : $dbarr[password] <br><br> ขอบพระคุณที่เป็นสมาชิกของ $home" ; $mail->AddAddress("$dbarr[email]", "$dbarr[name];"); // to Address //$mail->AddAttachment("PHPMailer/thaicreate/myfile.zip"); //$mail->AddAttachment("PHPMailer/thaicreate/myfile2.zip"); //$mail->AddCC("[email protected]", "Mr.Member ShotDev"); //CC //$mail->AddBCC("[email protected]", "Mr.Member ShotDev"); //CC $mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low $mail->Send(); if($mail->Send()) { $status = "<center><font size='3' color='blue'><b>ขณะนี้ระบบของเราได้ส่งรหัสผ่านของคุณไปทางอีเมล์ $email เรียบร้อยแล้ว</b></font></center>" ; } else { $status = "<center><font size='3' color='blue'><b>ระบบไม่สามารถส่งอีเมล์ไปให้ท่านได้</b></font></center>" ; } } } } else { $status = "" ; } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง