โค๊ดที่สำหรับเอาไว้แสดงรายชื่อคน online
ผมขอเป็นแบบวิธีเก็บข้อมูลบน mysql นะครับ ว่าจะต้องใชโค๊ดอย่างไร
ส่วน ผมมีหน้าล็อคอินอยู่แล้วอ่าครับ ผมจะต้องเอาแค่โค๊ดตรงไหนไปแปะไว้ตรงไหนบ้างครับ อยากด้ายแค่แสดงรายชื่อคน online อ่าครับ
อันนี้คือ หน้าที่ถูกแอคชั่นมาจากฟอร์มครับ
ไฟล์ login_check.php
[code]
<?php
session_start() ;
if(isset($user_login) and isset($pwd_login)) {
include("config.inc.php") ;
mysql_select_db($db) ;
?>
<html>
<head>
<title>Check User</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFFF">
<?php
$result = mysql_query("select user,password from member where user='$user_login' and password='$pwd_login'") ;
$num = mysql_num_rows($result) ;
if($num<=0) {
echo "<br><br><center><font size='3' face='MS Sans Serif' color='red'><b>รหัสผ่านไม่ถูกต้องครับ กรุณาตรวจสอบ!!!</b></font></center>" ;
print "<meta http-equiv=refresh content=2;URL=index.php>";
exit() ;
}
else {
$dbarr = mysql_fetch_array($result) ;
if($user_login!=$dbarr['user'] and $pwd_login!=$dbarr['password']) {
echo "รหัสผ่านไม่ถูกต้อง" ;
exit() ;
}
else {
$login_true = $user_login ;
session_register("login_true") ;
echo "<meta http-equiv='refresh' content='2 ;url=member_detail.php'>" ;
echo "<br><br><br><br><br><center><img src='load2.gif' border='0' align='absmiddle'> กำลังโหลด...</center>" ;
exit() ;
}
}
}
?>
</body>
</html>
[code]
รบกวนตอบผมด้วยนะครับ ขอบคุณครับ
ผมต้องทำยังไงหรอครับ ช่วยอธิบายหั้ยละเอียดนะครับ คือผมยังไม่ค่อยเก่ง PHP อ่าครับ ทำโค๊ดมาหั้ยดูเลยก็ดีครับ
ขอบคุณครับ