<? session_start(); if(empty($_SESSION['username'])){ echo "<script> window.location='login.php' </script>"; } if($_POST){ if($_POST['now_pwd'] != ""){ if($_POST['new_pwd1'] != ""){ if($_POST['new_pwd2'] != ""){ if($_POST['new_pwd1'] == $_POST['new_pwd2']){ $sql_chk = "SELECT * FROM `account` WHERE `password` LIKE '".$_POST['now_pwd']."'"; $qry_chk = mysql_query($sql_chk); $rst_chk = mysql_fetch_array($qry_chk); if($_POST['now_pwd'] == $rst_chk['password']){ $sql_upd = "UPDATE `".$config['db']."`.`account` SET `password` = '".$_POST['new_pwd1']."' WHERE `account`.`id` =".$_SESSION['id'].";"; $qry_upd = mysql_query($sql_upd); echo '<div class="alert alert-dismissable alert-success"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>สำเร็จ!</strong> เปลียรหัสเรียนร้อยย </div> <meta http-equiv="refresh" content="2 ;url=./logout.php">'; } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> รหัสผ่านเก่าไม่ถูกต้อง </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> รหัสผ่านไม่เหมือนกัน </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกยืนยันรหัสผ่านใหม่ด้วย </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกรหัสผ่านใหม่ด้วย </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกรหัสผ่านเก่า </div>'; } } ?> <form action="change_pwd.php" method="post"> <h3 align="left"><strong>เปลียนรหัสผ่าน</strong></h3> <p><strong>รหัสผ่านปัจจุบัน</strong></p> <input name="now_pwd" class="form-control" type="password" id="now_pwd" placeholder="Now Password" /> <p><strong>รหัสผ่านใหม่</strong></p> <input type="password" class="form-control" name="new_pwd1" placeholder="New Password" /> <p><strong>ยืนยันรหัสผ่านใหม่</strong></p> <input type="password" class="form-control" name="new_pwd2" placeholder="New Password Confirm" /><br /> <button type="submit" class="btn btn-primary btn btn-sm"><i class="glyphicon glyphicon-cog"></i> เปลียนรหัสผ่าน</button> <a href="index.php" class="btn btn-sm btn btn-default"><i class="glyphicon glyphicon-chevron-left"></i> ย้อนกลับ</a> </form>
$sql_upd = "UPDATE `".$config['db']."`.`account` SET `password` = '".$_POST['new_pwd1']."' WHERE `account`.`id` =".$_SESSION['id'].";";
Quote:SET `password` = '".md5($_POST['new_pwd1'])."'
<? session_start(); if(empty($_SESSION['username'])){ echo "<script> window.location='login.php' </script>"; } if($_POST){ if($_POST['now_pwd'] != ""){ if($_POST['new_pwd1'] != ""){ if($_POST['new_pwd2'] != ""){ if($_POST['new_pwd1'] == $_POST['new_pwd2']){ $sql_chk = "SELECT * FROM `account` WHERE `password` LIKE '".md5($_POST['now_pwd'])."'"; $qry_chk = mysql_query($sql_chk); $rst_chk = mysql_fetch_array($qry_chk); if(md5($_POST['now_pwd']) == $rst_chk['password']){ $sql_upd = "UPDATE `".$config['db']."`.`account` SET `password` = '".md5($_POST['new_pwd1'])."' WHERE `account`.`id` =".$_SESSION['id'].";"; $qry_upd = mysql_query($sql_upd); echo '<div class="alert alert-dismissable alert-success"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>สำเร็จ!</strong> เปลียรหัสเรียนร้อยย </div> <meta http-equiv="refresh" content="2 ;url=./logout.php">'; } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> รหัสผ่านเก่าไม่ถูกต้อง </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> รหัสผ่านไม่เหมือนกัน </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกยืนยันรหัสผ่านใหม่ด้วย </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกรหัสผ่านใหม่ด้วย </div>'; } } else{ echo '<div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">×</button> <strong>แจ้งเตือน!</strong> กรอกรหัสผ่านเก่า </div>'; } } ?> <form action="change_pwd.php" method="post"> <h3 align="left"><strong>เปลียนรหัสผ่าน</strong></h3> <p><strong>รหัสผ่านปัจจุบัน</strong></p> <input name="now_pwd" class="form-control" type="password" id="now_pwd" placeholder="Now Password" /> <p><strong>รหัสผ่านใหม่</strong></p> <input type="password" class="form-control" name="new_pwd1" placeholder="New Password" /> <p><strong>ยืนยันรหัสผ่านใหม่</strong></p> <input type="password" class="form-control" name="new_pwd2" placeholder="New Password Confirm" /><br /> <button type="submit" class="btn btn-primary btn btn-sm"><i class="glyphicon glyphicon-cog"></i> เปลียนรหัสผ่าน</button> <a href="index.php" class="btn btn-sm btn btn-default"><i class="glyphicon glyphicon-chevron-left"></i> ย้อนกลับ</a> </form>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง