|
|
|
ช่วยดูเกี่ยวกับการเปลี่ยนรหัสผ่านเดิมให้หน่อยครับ แบบ md5 |
|
|
|
|
|
|
|
$confirmPassword = $_POST['txtConfirmPassword'];
$password = $_POST['txtPassword'];
2 ตัวแปร ด้านบน ให้เช็คที่ javascript ไม่ต้องส่ง confirm มาตรวจสอบที่ server
$hashOldPassword = md5($oldPass);
$confirmPassword = $_POST['txtConfirmPassword'];
$password = $_POST['txtPassword'];
$hashPassword = md5($password.SECRET_KEY);
hash old กับ new มัน generate ต่างกัน
$result = mysqli_query($con,$sql) or die($sql.'<br>'.$con->error); ตรวจสอบการคิวรี่ด้วย
ปล. เปลี่ยนไปเขียน รูปแบบ oop ง่ายกว่า สั้นกว่า เร็วกว่า
Code (PHP)
$result = $con->query($sql) or die($sql.'<br>'.$con->error);
if($result->num_rows<1){
//ค้นหาไม่พบ
}
ปล.อีกที
if (mysqli_num_rows($result) == 1) {
แน่ใจนะว่า มีแค่ record เดียว
|
ประวัติการแก้ไข 2019-04-16 09:40:55 2019-04-16 09:43:31
|
|
|
|
Date :
2019-04-16 09:38:44 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|