$SQL = "SELECT *
FROM `customers`,`employees`
WHERE Cus_User = '$xuser' and Cus_Pass = '$xpsw' and Emp_User= '$xuser' and Emp_Pass= '$xpsw' " ;
เปลี่ยนสีแดงเป็น or
หรือ Code (PHP)
$SQL = "
SELECT * FROM `customers` WHERE Cus_User = '$xuser' and Cus_Pass = '$xpsw'
union all
SELECT * FROM `employees` WHERE Emp_User= '$xuser' and Emp_Pass= '$xpsw' " ;
เน้นเอาแบบล่างดีกว่าครับ แบบบนมันตะหงิดๆ ว่าผิด 5555
แต่แบบล่างจำเป็น ในการเลือก field มาให้เท่ากัน นะครับ
SELECT cus_id, sit_id FROM `customers` WHERE Cus_User = '$xuser' and Cus_Pass = '$xpsw'
union all
SELECT emp_id, sit_id FROM `employees` WHERE Emp_User= '$xuser' and Emp_Pass= '$xpsw' " ;
$SQL = "
SELECT cus_id, sit_id FROM `customers` WHERE Cus_User = '$xuser' and Cus_Pass = '$xpsw'
union all
SELECT emp_id, sit_id FROM `employees` WHERE Emp_User= '$xuser' and Emp_Pass= '$xpsw'
"
Notice: Undefined variable: Query in C:\xampp\htdocs\titan\TLogin2.php on line 13
Warning: mysql_num_rows() expects parameter 1 to be resource, null given in C:\xampp\htdocs\titan\TLogin2.php on line 13
Username and Password Incorrect!