|
|
|
ขอความช่วยเหลือหน่อยครับจะ Search หาและดึงข้อมูลของ User ครับโดยให้ข้อมูลขึ้นโชว์ในตารางที่กำหนด โดย Select จาก 3 ตารางในฐานข้อมูล |
|
|
|
|
|
|
|
ผมทำเว็บ e-learning นะครับ
ฐานข้อมูล "db_member"
มีทั้งหมด 3 table ประกอบด้วย
tb_member มี 2 ฟิลล์ ดังนี้ id , name (ชื่อ-สกุล)
tb_scorebe(ทดสอบก่อนเรียน) มี 5 ฟิลล์ ดังนี้ id , today_be(วันที่สอบก่อนเรียน) , time_be(เวลาที่สอบก่อนเรียน) , score_be(คะแนนก่อนสอบ) , userid(เก็บ id จาก tb_member)
tb_scoreaf(ทดสอบหลังเรียน) มี 5 ฟิลล์ ดังนี้ id , today_af(วันที่สอบหลังเรียน) , time_af(เวลาที่สอบหลังเรียน) , score_af(คะแนนหลังสอบ) , userid(เก็บ id จาก tb_member)
อยากให้ข้อมูลทั้งหมดแสดงในตารางที่กำหนดดังนี้
โค้ดที่ผมลองทำไว้แล้ว
Code (PHP)
<?
$host="localhost";
$user="root";
$pw="1234";
$dbname="db_member";
$charset = "SET NAMES 'utf8'";
mysql_connect ($host,$user,$pw) or die ("ติดต่อhostไม่ได้");
mysql_query ($charset) or die ('Invalid query :'.mysql_error());
mysql_select_db($dbname) or die ("ติดต่อฐานข้อมูลไม่ได้");
$sql = "select * from tb_member AS A ,tb_scorebe AS B , tb_scoreaf AS C where name like '%$search%' " ;
$dbquery = mysql_db_query($dbname, $sql);
$num_rows = mysql_num_rows($dbquery);
?>
<table width="1042" height="77" border="1" align="center" bordercolor="#FF0000">
<tr align="center" bgcolor="#999999">
<td width="40">รหัส</td>
<td width="188">ชื่อ-สกุล</td>
<td width="84">วันที่สอบ</td>
<td width="81">เวลาที่สอบ</td>
<td width="171">คะแนนสอบก่อนเรียน</td>
<td width="82">วันที่สอบ</td>
<td width="83">เวลาที่สอบ</td>
<td width="160">คะแนนสอบหลังเรียน</td>
<td width="95" align="center">ลบข้อมูล</td>
</tr>
<?
$i=0;
while ($i < $num_rows)
{
$result = mysql_fetch_array($dbquery);
$id = $result[id];
$name = $result[name];
$today_be = $result[today_be];
$time_be = $result[time_be];
$score_be = $result[score_be];
$today_af = $result[today_af];
$time_af = $result[time_af];
$score_af = $result[score_af];
$i++;
?>
<tr bgcolor="#CCCCCC">
<td> <? echo "$result[id]" ?></td>
<td> <? echo "$result[name]" ?></td>
<td> <? echo "$result[today_be]" ?></td>
<td> <? echo "$result[time_be]" ?></td>
<td> <? echo "$result[score_be]" ?></td>
<td> <? echo "$result[today_af]" ?></td>
<td> <? echo "$result[time_af]" ?></td>
<td> <? echo "$result[score_af]" ?></td>
<td align="center"><a href="deletemem_test.php?id_del=<?=$result[id] ?>' onclick=\"return confirm('คุณแน่ใจที่จะลบคำถามข้อนี้ ออกจากระบบ ?')\">ลบ</a></td>
</tr>
<?
}
?>
</table>
<p>
<?
mysql_close();
?>
</p>
<p> <a href="formmem_test.php"><<ย้อนกลับ</a></p>
ผลการรัน เมื่อค้นหาด้วย ศ จะได้ชื่อผู้นั้นมา แต่มันขึ้นแบบนี้ไม่รู้ผมทำถูกรึยัง
ส่วนอันนี้ เป็น โค้ด แสดงข้อมูลของ user ทุกคน ในฐานข้อมูล
Code (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>index</title>
<style type="text/css">
<!--
body {
background-color: #0A7CFC;
background-image: url(../user/pic/227034_4204591.jpg);
color: #000;
}
#apDiv1 {
position:absolute;
left:69px;
top:380px;
width:213px;
height:129px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:97px;
top:510px;
width:208px;
height:137px;
z-index:1;
}
#form2 table tr td {
color: #903;
}
a:link {
color: #903;
}
a:hover {
color: #00F;
}
a:visited {
color: #903;
}
a:active {
color: #00F;
}
-->
</style>
</head>
<body>
<table width="1026" height="813" border="1" align="center">
<tr>
<td width="1016" height="807" align="center" valign="top" bgcolor="#FFFFFF"><table width="1019" border="1">
<tr>
<td width="1009" align="center"><img src="../user/pic/headd.gif" width="1018" height="174" /></td>
</tr>
</table>
<table width="1024" border="1">
<tr>
<td width="941" align="center" valign="top">
<form id="form1" name="form1" method="post" action="">
<font color="#0000FF" size="+2"><b>ยินดีต้อนรับผู้ดูแลระบบ</b></font>
</form>
</td>
</tr>
</table>
<table width="1016" height="510" border="1">
<tr>
<td width="181" height="506" align="center" valign="top" bgcolor="#CCCCCC"><form id="form2" name="form2" method="post" action="">
<p> </p>
<table width="181" height="391" border="0">
<tr>
<td width="185" align="center"><font color="#990000"><a href="form_profile.php">จัดการข้อมูลส่วนตัว</a></font></td>
</tr>
<tr>
<td align="center"><font color="#990000"><a href="form_usersearch.php">จัดการข้อมูลนักเรียน</a></font></td>
</tr>
<tr>
<td align="center"><font color="#990000"><a href="add_lesson.php">จัดการบทเรียน</a></font></td>
</tr>
<tr>
<td align="center"><font color="#990000"><a href="form_test.php">จัดการแบบทดสอบ</a></font></td>
</tr>
<tr>
<td align="center"><font color="#990000"><a href="formmem_test.php">จัดการคะแนนสอบ</a></font></td>
</tr>
<tr>
<td align="center"><font color="#990000"><a href="../user/login.php" target="_parent">ออกจากระบบ</a></font></td>
</tr>
</table>
<p> </p>
</form>
<p> </p></td>
<td width="819" align="center" valign="top" background="../user/pic/223381_4134803.gif"><p> </p>
<table width="823" height="36" border="1">
<tr bgcolor="#999999">
<td width="42" height="30">ลำดับ</td>
<center><td width="142">ชื่อ - สกุล</td></center>
<td width="56">วันที่สอบ</td>
<center> <td width="62">เวลาสอบ</td></center>
<center> <td width="143">คะแนนก่อนเรียน</td></center>
<center><td width="61">วันที่สอบ</td></center>
<td width="61">เวลาสอบ</td>
<center> <td width="127">คะแนนหลังเรียน</td></center>
<center> <td width="71">ต้องการ</td></center>
</tr>
<?
$count=0;
//-----เชื่อมฐานข้อมูล
$host="localhost";
$user="root";
$pw="1234";
$dbname="db_member";
$charset = "SET NAMES 'utf8'";
mysql_connect ($host,$user,$pw) or die ("ติดต่อhostไม่ได้");
mysql_query ($charset) or die ('Invalid query :'.mysql_error());
mysql_select_db($dbname) or die ("ติดต่อฐานข้อมูลไม่ได้");
//-------------ปิด
$sql="select * from tb_member AS A ,tb_scorebe AS B , tb_scoreaf AS C order by name " ;
$result=mysql_db_query($dbname,$sql);
while($record=mysql_fetch_array($result)) {
$count++;
echo "
<tr>
<td>$count</td>
<td>$record[name]</td>
<td>$record[today_be]</td>
<td>$record[time_be]</td>
<td>$record[score_be]</td>
<td>$record[today_af]</td>
<td>$record[time_af]</td>
<td>$record[score_af]</td>
<td><a href=\"deletemem_test.php?id_del=$record[id]\" onclick=\"return confirm(' ต้องการลบ $record[name] ออกจากระบบจริงหรือไม่ ')\">ลบ</a></td>
</tr>";
}
mysql_close();
?>
</table>
<p> </p>
<p> </p></td>
</tr>
</table>
<p> </p></td>
</tr>
</table>
</body>
</html>
ผลที่ได้ เป็นแบบนี้และยังมาไม่ครบ
รบกวนด้วยนะครับ ถ้ายาวไปขออภัยด้วยนะครับ แหะๆ
Tag : PHP, MySQL, HTML/CSS, JavaScript, jQuery, CakePHP
|
|
|
|
|
|
Date :
2013-01-31 01:27:52 |
By :
Seriesblack |
View :
986 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เท่าที่ดูน่าจะต้องใช้การ JOIN ครับ ลอง Capture ตัว Table ทั้ง 3 พร้อม Data และ Result ที่ต้องการ แล้วนำมาโพสหน่อยครับ
|
|
|
|
|
Date :
2013-01-31 09:18:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|