ช่วยทีครับเกี่ยวกับการทำล็อกอิน ไม่สามารถเก็บค่า COOKIE ได้ไม่รู้ปัญหาอะไรดูให้หน่อยครับ
ไหน CODE อ่ะครับ
Date :
2011-08-11 20:01:58
By :
adaaugusta
<?
ob_start();
session_start();
session_destroy();
include ("connect_db.php");
$check="select * from user where username='$_POST[username]' and password='$_POST[password]'";
$result_check=mysql_db_query($db,$check);
$numcheck = mysql_num_rows($result_check);
if($numcheck=="1"){
setcookie("username",$_POST["username"],time()+86400);
setcookie("password",$_POST["password"],time()+86400);
header("location:index.php");
exit();
}else{
header("location:index.php");
exit();
}
?>
Date :
2011-08-11 20:06:09
By :
naya2007
ตอบให้หน่อย ดันๆๆๆๆๆๆๆๆ
Date :
2011-08-12 14:10:33
By :
naya2007
Code (PHP)
<?PHP
ob_start();
$username = trim($_POST["username"]);
$username = trim($_POST["password"]);
include ("connect_db.php");
$check="select * from user where username='$_POST[username]' and password='$_POST[password]'";
$result_check=mysql_db_query($db,$check);
$numcheck = mysql_num_rows($result_check);
if($numcheck=="1"){
setcookie("username","$username",time()+86400);
setcookie("password","$username",time()+86400);
header("location:index.php");
exit();
}else{
header("location:index.php");
exit();
}
?>
น่าจะได้แระ แล้วเวลาเรียกใช้อีกหน้านึงก็
Code (PHP)
<?PHP
ob_start();
$_COOKIE['username'];
$_COOKIE['password'];
?>
ลอง Echo ก็ได้ว่า cookie ใช้ได้รึป่าว
<?PHP
echo 'ชื่อผู้ใช้งาน คือ '.$_COOKIE['username'];
echo 'รหัสชื่อผู้ใช้งาน คือ '.$_COOKIE['password'];
?>
ประวัติการแก้ไข 2011-08-12 14:21:03 2011-08-12 14:29:22 2011-08-12 14:34:10 2011-08-12 14:37:23 2011-08-12 17:13:12
Date :
2011-08-12 14:17:58
By :
arm8957
ครับยังไม่ได้เหมือนเดิม ปัญญามันคือ ไอ้เว็บบราวเชอร์บ้างตัวมันไม่ยอมเก็บ COOKIE อะครับ
ในเครื่องผม Google Chrome และ Internet Explorer มันไม่เก็บอะครับ ล็อกอินได้ ประมาณ 1 นาทีก็หายไป
แต่ว่า Mozilla Firefox ล็อกอิน ได้ 1 วันครับตามโค้ด
แต่พอไปรัยเครื่องอื่น Google Chrome Internet Explorer Mozilla Firefox ล็อกอินได้ 1 วัน ปกติครับ
ก็เลยอยากทำให้เว็บเรามันซับพอร์ตกับ บราวเชอร์ต่างๆ อะครับ
Date :
2011-08-12 15:22:33
By :
naya2007
ผมก็กำลังปวดหัว....กับ Crome เหมือนกัน จะส่งงานแล้ว...
Date :
2011-09-22 18:59:50
By :
อัน
Load balance : Server 01