|
|
|
รบกวนช่วยดู code การเข้าเเก้ไขข้อมูลสมาชิก ของพนักงานให้หน่อยครับ |
|
|
|
|
|
|
|
จาก code ด้านล่างจะเป็นการกำหนดให้ พนักงานสามารถเข้าทำการเเก้ไขข้อมูลของสมาชิกได้ครับ เเต่เมื่อทำการเเก้ไข มันไม่สามารถบันทึกลงฐานข้อมูลได้ครับ รบกวนเเนะนำเพิ่มเติมด้วยครับ ขอบคุณครับ
Code (PHP)
require 'connect.php';
session_start();
if (!isset($_SESSION['emp_id'])) { หน้า indext.php
header("Location: Login.php");
}
$cus_id = isset($_GET['cus_id'])?$_GET['cus_id']:'';
$cus_perfix = $_POST['cus_perfix'];
$cus_name = $_POST['cus_name'];
$cus_surname = $_POST['cus_surname'];
$cus_email = $_POST['cus_email'];
$cus_number = $_POST['cus_number'];
$cus_address = $_POST['cus_address'];
$cus_district = $_POST['cus_district'];
$cus_prefecture = $_POST['cus_prefecture'];
$cus_province = $_POST['cus_province'];
$cus_zip_code = $_POST['cus_zip_code'];
if (checkEmail($cus_email) == false) {
echo "<script>alert('คุณกรอกอีเมล์ไม่ถูกต้อง');window.location='Profile.php';</script>";
} else if (checkNumber($cus_number) == false && $cus_number != '') {
echo "<script>alert('คุณกรอกเบอร์โทรศัพท์ไม่ถูกต้อง');window.location='Profile.php';</script>";
} else if (checkZipcode($cus_zip_code) == false && $cus_zip_code != '') {
echo "<script>alert('!ผิดพลาด คุณกรอกรหัสไปรษณีย์ไม่ถูกต้อง');window.location='Register.php';</script>";
} else {
//เมื่อตรวจสอบผ่านทุกอย่างแล้ว ก็ให้อัพเดทฐานข้อมูล
$sql = "UPDATE customer SET cus_perfix = '$cus_perfix', cus_name = '$cus_name',cus_surname = '$cus_surname',cus_email = '$cus_email',"
. "cus_number = '$cus_number' ,cus_address ='$cus_address' ,cus_district='$cus_district',cus_prefecture='$cus_prefecture',"
. "cus_province='$cus_province',cus_zip_code='$cus_zip_code' WHERE cus_id = $cus_id";
$rel = mysqli_query($con, $sql);
if ($rel) {
echo "<script>alert('อัพเดทข้อมูลเรียบร้อยแล้ว');window.location='main1.php';</script>";
} else {
echo "<script>alert('เกิดข้อผิดพลาดในฐานข้อมูล');window.location='Emp_pro_edit_cus.php';</script>";
}
}
Tag : PHP, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2018-11-30 19:04:33 |
By :
worapong39 |
View :
623 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$rel = mysqli_query($con, $sql);
if( $rel && $con->affected_rows>0){
//------ แสดงอัพเดทถูกต้อง
}else if( $rel ){
echo $sql , '<br>', จำนวนอัพเดท เป็น 0
}else{
echo $sql . '<br>'. $con->error;
}
กรณีผิดผลาดให้แสดง error ออกมาจะได้รู้ว่าอะไรเป็นอะไร
|
|
|
|
|
Date :
2018-11-30 20:43:44 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|