ใครก้อได้ช่วยดูระบบหนูให้หน่อยนะค่า พรุ่งนี้จะส่งโปรเจคแล้วยังไม่ถึงไหนเลย
ถ้าแบบระบบ login ก็ รองนำค่า mysql_num_rows มา echo ดูสิครับ ถ้ามันขึ้น 1หรือมากกว่า 1 ก็ถือว่า ได้ทำการ login แล้ว ตัวอย่างแบบนี้นะครับ
Code (PHP)
$host="localhost";
$user="root";
$pass="123456";
$db="db_test";
$link=mysql_connect($host,$user,$pass) or die ("No Connect");
mysql_select_db($db) or die ("No select");
$sql="SELECT * FROM testproject";
mysql_query("SET NAMES TIS620");
$result=mysql_db_query($sql,$link) or die ("No Query");
$num=mysql_num_rows($result);
echo $num;
ถ้าค่า $num เป็น 1 หรือมากกว่า 1 ก็ถือว่าได้ทำการ login แล้ว แต่ตามหลังความเป็นจริง 1 ID ต้องมีแค่ 1 คนเท่านนั้น ที่เหลือก็รองเอาค่า num ไปใช่นะครับ ส่วนโปรเจ็ค ไม่ต้องคิดมากครับ มีแค่ 1-3 หน้า แต่ถ้าอาจารย์เค้าถามแล้วตอบได้ ย้ำนะครับว่าต้องตอบได้ แค่นี้ก็ผ่านแล้วครับ เพราะผมพึ่งสอบเสร็จไปไม่นานนี้เอง เขียนเอง แต่ไม่สามารถอธิบายให้จารย์เค้ารู้เรื่องได้ เลยแค้นตัวเองที่ทำไหมถึงทำไม่ได้เลย ><
Date :
2011-02-07 19:42:24
By :
thethaicom
Date :
2011-02-07 20:02:22
By :
น้องน้ำ
ไม่มีโค๊ดให้ดู เดากันให้ตายก็แก้ไม่ได้ครับ
Date :
2011-02-07 22:57:47
By :
PlaKriM
งง ตึบๆๆ ไก่กุ๊กๆๆ ตาเลยแตก งงอย่างแรง = =
ขอเดานะครับจะทำอัพโหลดไฟล์ใช่ไหมเนี้ย ไปดูเรื่อง Function File ของ php นะครับ เพราะถ้าไม่รู้ว่าจะเอาอะไรคง งง หน้าดู
Date :
2011-02-08 02:04:53
By :
thethaicom
น่าจะเกี่ยวกับ session
Date :
2011-02-08 07:26:02
By :
mzchewiize
โค้ดล็อกอินค่า
<?php
session_start() ;
/* add by kergrit(redthird.com) for compatible global variable off/on php.ini */
$user_login = $_POST['user_login'];
$pwd_login = $_POST['pwd_login'];
$select = $_POST['select'];
//if(isset($user_login) and isset($pwd_login)){
include("config.inc.php");
?>
<html>
<head>
<title>::ระบบล็อกอิน::</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body bgcolor="#FFFFCC">
<?php
$sql = "SELECT id,username, password, role_type FROM user_member_it50_tbl WHERE username='$user_login' AND password='$pwd_login' AND role_type='$select'";
if(!$result = mysql_query($sql)){
echo mysql_error();
exit;
}
$dbarr = mysql_fetch_array($result);
if($dbarr == null){
?>
<script language="javascript">
alert("รหัสผ่านไม่ถูกต้อง");
window.location = "index.php";
</script>
<?php
}else{
$role_type = $dbarr["role_type"];
$member_id = $dbarr['id'];
$_SESSION['member_id']=$member_id;
$_SESSION['login_true'] = $user_login;
$_SESSION['role_type'] = $role_type;
$url = "member_detail.php";
if($role_type == 1){ // Student
$url = "index.php";
}else if($role_type == 2){ // Teacher
$url = "admin_home.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'><b>??????????????????????</b></font></center>" ;
print "<meta http-equiv=refresh content=3;URL=index.php>";
}
else {
$dbarr = mysql_fetch_array($result);
if($user_login!=$dbarr['user'] and $pwd_login!=$dbarr['password']) {
echo "??????????????????" ;
}else {
$_SESSION['login_true'] = $user_login;
echo "<meta http-equiv='refresh' content='0 ;url=member_detail.php'>" ;
}
}
}
*/
?>
<script language="javascript">
window.location = "<?php echo $url;?>";
</script>
</body>
</html>
Date :
2011-02-08 11:58:25
By :
น้องน้ำ
อันนี้หน้าlist_teacher
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?
session_start();
$memeber_id =$_SESSION['member_id'];
include "connect.php";
?>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<?
$sql="select * from user_member_it50_tbl where role_type='2' ";
$result=mysql_db_query($dbname,$sql);
while ($rs=mysql_fetch_array($result)) {
echo "<TR>
<td><a href='teacher.php?teacher_id=$rs[id]'> $rs[fullname]</a><td>
</TR>";
}
?>
</table>
Date :
2011-02-08 11:59:30
By :
น้องน้ำ
อันนี้หน้า teacher.php ค่า
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<?
@session_start();
include "connect.php";
$teacher_id = $_GET[id];
$sql= "SELECT * FROM user_member_it50_tbl WHERE id='$teacher_id' ";
$result=mysql_db_query($dbname,$sql);
$qr = mysql_fetch_array($result);
?>
<body>
<table width="900" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="5%">ชื่อ :</td>
<td width="46%"><? echo $qr['fullname']; ?></td>
<td width="49%" rowspan="2"><img src="??" width="186" height="67" /></td>
</tr>
<tr>
<td>อื่นๆ :</td>
<td>...</td>
</tr>
</table></td>
</tr>
<tr>
<td>
<table width="100%" border="1" align="center">
<tr>
<TD VALIGN="top"> <? @include "pdf_list.php";?></TD>
<TD VALIGN="top"> <? @include "ppt_list.php";?></TD>
</TR>
<TR>
<TD WIDTH="238" VALIGN="top"> <? @include "word_list.php";?></TD>
<TD WIDTH="236" VALIGN="top"> <? @include "photo_list.php";?></TD>
</TR>
</table>
</td>
</tr>
</table>
</body>
</html>
ช่วยดูให้หน่อยนะค่า
ขอบคุนค่า
Date :
2011-02-08 12:00:33
By :
น้องน้ำ
Load balance : Server 00