 |
การเปลี่ยนรหัสผ่าน ขอโค้ด การเปลี่ยนรหัสผ่าน แบบเช็ดรหัสเก่า แล้วให้ up เป็นรหัสใหม่แล้วมีการยืนยันด้วยนะคับ |
|
 |
|
|
 |
 |
|
Code (PHP)
<?php
$oldpassword = trim($_POST["oldpassword"]);
$password = trim($_POST["password"]);
$repassword = trim($_POST["repassword"]);
$sql = "select username from member where username='$username' and password='$oldpassword'";
$result = mysql_query($sql);
$num = mysql_num_rows($result);
if ($num==0)
die("<script>
alert('Old password incorrect');
history.back();
</script>");
// 2.2 password = repassword
if ($password != $repassword)
die("<script>
alert('Password is not same');
history.back();
</script>");
// 6. save data
$password = md5($password);
$sql = "update member set
password='$password'
where username='$username'
";
$result = mysql_query($sql) or die("Err : $sql");
echo "<script>
alert('Update Password');
window.location='login.php';
</script>";
?>
ปล.ลองเอาไปปรับใช้อีกทีน่ะครับ
|
 |
 |
 |
 |
Date :
2009-05-05 07:33:01 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากคับ คุณKanJi
|
 |
 |
 |
 |
Date :
2009-05-05 12:59:09 |
By :
meth |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อยากได้โค้ดอัปโหลดข้อมูลเฉพาะไฟล์pdf ค่ะ และรู้ IPaddress ของเครื่องที่อัปโหลดด้วยค่ะ
|
 |
 |
 |
 |
Date :
2010-12-25 12:33:29 |
By :
ไอทีฝึกหัด |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากๆนะคะ
|
 |
 |
 |
 |
Date :
2011-02-23 11:39:54 |
By :
aungsi |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากๆเลยค่ะ คุณ KanJi
|
 |
 |
 |
 |
Date :
2011-09-27 15:27:25 |
By :
molekoon |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณครับ
|
 |
 |
 |
 |
Date :
2013-02-09 22:31:18 |
By :
abc |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อยากได้เป็นของ android ทำไงช่วยบอกทีครับ
|
 |
 |
 |
 |
Date :
2015-03-04 22:58:24 |
By :
beer |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2016-11-14 00:47:04 |
By :
marutnon |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (Android-Java)
|
 |
 |
 |
 |
Date :
2021-03-09 06:31:03 |
By :
คนหล่อ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ทำยังไง
|
 |
 |
 |
 |
Date :
2021-05-25 16:31:07 |
By :
j xsk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
 
|
 |
 |
 |
 |
Date :
2021-06-17 08:44:02 |
By :
0636062368 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
<?php
02.
$oldpassword = trim($_POST["oldpassword"]);
03.
$password = trim($_POST["password"]);
04.
$repassword = trim($_POST["repassword"]);
05.
06.
07.
$sql = "select username from member where username='$username' and password='$oldpassword'";
08.
$result = mysql_query($sql);
09.
$num = mysql_num_rows($result);
10.
11.
if ($num==0)
12.
die("<script>
13.
alert('Old password incorrect');
14.
history.back();
15.
</script>");
16.
17.
// 2.2 password = repassword
18.
if ($password != $repassword)
19.
die("<script>
20.
alert('Password is not same');
21.
history.back();
22.
</script>");
23.
24.
// 6. save data
25.
$password = md5($password);
26.
27.
$sql = "update member set
28.
password='$password'
29.
where username='$username'
30.
";
31.
$result = mysql_query($sql) or die("Err : $sql");
32.
33.
echo "<script>
34.
alert('Update Password');
35.
window.location='login.php';
36.
</script>";
37.
38.
?>
|
 |
 |
 |
 |
Date :
2021-06-17 08:52:09 |
By :
[img=0636062863]/upload/stock/ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
<strong>Code</strong>
<span class="notranslate"><pre><div class="code"><strong>Code (VBScript)</strong>
<span class="notranslate"><font class="css_code"><pre class="brush:vb"><a href="ftp://<span style=" background-color:red;"="">" target="blank" title="FTP <span style="background-color:red;"></span>">ftp://<span style="background-color:red;"></span></a>
</pre></font></span>
</div></pre></span>Code (ASP)
|
 |
 |
 |
 |
Date :
2021-06-17 08:55:36 |
By :
หม่อน |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
<?php
$oldpassword = trim($_POST["oldpassword"]);
$password = trim($_POST["password"]);
$repassword = trim($_POST["repassword"]);
$sql = "select username from member where username='$username' and password='$oldpassword'";
$result = mysql_query($sql);
$num = mysql_num_rows($result);
if ($num==0)
die("<script>
alert('Old password incorrect');
history.back();
</script>");
// 2.2 password = repassword
if ($password != $repassword)
die("<script>
alert('Password is not same');
history.back();
</script>");
// 6. save data
$password = md5($password);
$sql = "update member set
password='$password'
where username='$username'
";
$result = mysql_query($sql) or die("Err : $sql");
echo "<script>
alert('Update Password');
window.location='login.php';
</script>";
?>
|
 |
 |
 |
 |
Date :
2021-06-20 12:56:33 |
By :
Ufa8k |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|