<? include("session_id.php");?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div align="right"> ยินดีต้อนรับ : คุณ<a href="changepass.php?uID=<?$ID;?>"> <font color="green"><? echo "$fname"; ?> <? echo "$lname"; ?> </font> </a> ตำแหน่ง : <font color="green"><? include("show_position.php"); ?> </font> <!--<a href="logout.php">ออกจากระบบ</a>--> </div> </body> </html> ในส่วนที่ ไฮไลท์เป็นสีแดงอ้ะค้ะ จะสิ้งไปยังหน้า changepass.php code ด้านล่างอ้ะค้ะ
<? session_start(); include("headlog.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <link href="style.css" rel="stylesheet" type="text/css" /> <link href="main_style.css" rel="stylesheet" type="text/css" /> <body> <div class="warp" > <div class="body" > <div id="left_block"> <p style=" clear:both;margin:10px 0 0;"> <div class="manu_list" style="margin-top:1px;"> <td colspan="2"><img src="images/menu.gif" width="220" height="30" /></td> <a href="authdepindex.php">หน้าแรก</a> <a href="authdepprofile">ข้อมูลส่วนตัว</a> <a href="authdepmem">จัดการข้อมูลสมาชิก</a> <a href="authdepitem">จัดการข้อมูลเงินฝาก</a> <a href="authdepdiv">คำนวณเงินปันผล</a> <a href="authdeppaydiv">ข้อมูลการจ่ายเงินปันผล</a> <a href="authnews">จัดการข้อมูลข่าวประชาสัมพันธ์</a> <a href="logout.php">ออกจากระบบ</a> </div> </p> </div> </div> <div id="right_block"> <p> <head> <title>เปลี่ยนรหัสผ่าน</title> <meta http-equiv=Content-Type content="text/html; charset=utf-8"> </head> <form action="show_user.php?uID=<?=$_GET["ID"];?>" name="frmEdit" method="post"> <? include("connect.php"); $strSQL = "SELECT * FROM user u,user_type t WHERE u.username = '".$_SESSION['userid']."' AND u.user_type=t.type_id "; $objQuery = mysql_query($strSQL); $objResult = mysql_fetch_array($objQuery); if(!$objResult) { echo "Not found user_id=".$_GET["uID"]; } else { ?> <br ><br > <tr> <td><strong>คุณ </strong><?=$objResult["fname"];?> <?=$objResult["lname"];?></td> </tr><br/> <tr> <td><strong>ตำแหน่ง </strong><?=$objResult["type"];?> <strong></td> </tr> <tr> <td> </td> </tr><br/> <tr> <td><a href="javascript:void(0)" onClick="window.open('editpassword.php?uID=<?=$ID;?>&PASS=<?=$password ; ?>','welcome','width=550,height=300')">เปลี่ยนรหัสผ่าน <? $objResult["user_id"]; ?></a></td> </tr> <? } mysql_close($objConnect); ?> </form> <br ><br > </p> </div> </body> </td>
<link rel="stylesheet" type="text/css" href="main_style.css"> <div id="right_block"> <font size="18" color="#993300"><b>เปลี่ยนรหัสผ่าน</b></font> <p> <form name="p" method="post" action="editpassword.php?do=edit" onSubmit="JavaScript:return fncSubmit();"> <table width="80%" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#000066"> <tr bgcolor="#CFCFCF"> <td><div align="right">ชื่อผู้ใช้ :</div></td> <td><input type="text" name="txtusername" value="<?=$uID;?>" disabled="disabled" size="10"/></td> </tr> <tr bgcolor="#E8E8E8" > <td><div align="right">รหัสผ่านเดิม<font size="-1"color="#FF0000">*</font> :</div></td> <td><input type="password" name="txtpassword" /></td> </tr> <tr> <td><div align="right">รหัสผ่านใหม่<font size="-1"color="#FF0000">*</font> :</div></td> <td><input type="password" name="newpassword" /></td> </tr> <tr> <td><div align="right">ยืนยันรหัสผ่าน<font size="-1"color="#FF0000">*</font> :</div></td> <td><input type="password" name="repassword" /></td> </tr> <tr> <td><div align="right"></div></td> <td><input type="submit" name="Submit" value="ยืนยัน" /> <input type="reset" name="close" value="ออก" onclick="window.close()"></td> </tr> </table> </form> <script language="javascript"> function fncSubmit() { if(document.p.txtpassword.value == "") { alert('กรุณากรอกรหัสผ่านเดิม'); document.p.txtpassword.focus(); return false; } if(document.p.newpassword.value == "") { alert('กรุณากรอกรหัสผ่านใหม่'); document.p.newpassword.focus(); return false; } if(document.p.repassword.value == "") { alert('กรุณายืนยันรหัสผ่าน'); document.p.repassword.focus(); return false; } if(document.p.newpassword.value != document.p.repassword.value) { alert('รหัสผ่านไม่ตรงกัน'); document.p.repassword.focus(); return false; } if(document.p.newpassword.value == document.p.repassword.value) { if(confirm('ยืนยันข้อมูลการเปลี่ยนรหัสผ่าน')==true) return true; } document.p.submit(); } </script> <? if($_REQUEST['do']=="edit"){ $password = $_POST["txtpassword"]; $newpassword = $_POST["newpassword"]; $repassword = $_POST["repassword"]; //$id="4343"; include("connect.php"); $sql = "select password from user where user_id='$ID' and password='$password'"; $result = mysql_query($sql); $num = mysql_num_rows($result); if ($num==0){ die("<script> alert('รหัสผ่านเดิมไม่ถูกต้อง'); </script>");} if($password == $repassword){ $sql = "update user set password='$password' where user_id='$ID' "; $result = mysql_query($sql) or die("Err : $sql"); echo "<script> alert('เปลี่ยนรหัสผ่านเรียบร้อย'); </script>";} } //window.location='index.php';?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง