รบกวนช่วยแก้ไขโค้ดตัวนี้ให้หน่อยค่ะเซียนทั้งหลาย คือมีปัญหาว่ามัน error มันไม่เช็ค user ให้ค่ะ
ขอบคุณล่วงหน้ามาก ๆ ค่ะ
ก้อย
ปัญหาค่ะ
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\AppServ\www\Learning\connect3.php:22) in C:\AppServ\www\Learning\chkmember.php on line 17
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\AppServ\www\Learning\connect3.php:22) in C:\AppServ\www\Learning\chkmember.php on line 17
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\Learning\connect3.php:22) in C:\AppServ\www\Learning\chkmember.php on line 20
if ($user_login=="" or $pass_login=="") {
echo "<h3>ERROR : กรุณากรอกข้อมูลให้ครบนะครับ<h3>"; exit();
}
include "connect3.php";
$sql="select * from tb_member where username='$user_login' and password='$pass_login'";
$result=mysql_db_query($dbname,$sql);
$num=mysql_num_rows($result);
mysql_close();