|
|
|
อยากให้สรุปตารางนี้ ออกมาเป็นแบบนี้ครับ |
|
|
|
|
|
|
|
SELECT COUNT(*) FROM $table
SELECT COUNT(id) FROM $table WHERE id=04974
|
|
|
|
|
Date :
2011-09-02 19:06:09 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้นะครับ ลองดูโคดของผม
Code (PHP)
<title>สรุปผล</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<body background="images/Globe.gif">
<div align="left"><font color="#FF0000"><img src="images/home.gif" width="15" height="15">
สรุปโฮมรูม</font> <br>
<hr>
</div>
<form action="index2.php" method="post" name="form1" id="form1">
ค้นหาจากระดับชั้น
<select name="kw" id="kw">
<option>ม.1</option>
<option>ม.2</option>
<option>ม.3</option>
<option>ม.4</option>
<option>ม.5</option>
<option>ม.6</option>
</select>
<input type="submit" name="Submit" value="ค้นหา">
<input type="reset" name="Submit" value="ยกเลิก">
</form>
<hr>
<table width="75%" border="0">
<tr>
<tr bgcolor="#00CCFF">
<td height="28"><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">รหัส</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">คำนำหน้า</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">ชื่อ</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">สกุล</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">ระดับชั้น</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">ห้อง</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">วัน
เดือน ปี</font></div></td>
<td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif">ความผิด</font></div></td>
</tr>
<?
if($kw=="")
{
echo"<font color='#FF0000' size='4'>กรอกข้อมูลที่ต้องการสืบค้น ! </font>";
}
else
{
include("../../config.php");
$sql="SELECT student_tk.s_id, student_tk.s_title, student_tk.s_name, student_tk.s_lasname, student_tk.s_class, student_tk.s_room, homeroom.h_day, homeroom.h_mouth, homeroom.h_year, homeroom.h_cause, homeroom.admin, homeroom.s_id, homeroom.ID_home
FROM student_tk INNER JOIN homeroom ON student_tk.s_id = homeroom.s_id WHERE s_class='$kw'" ;
$result=mysql_query($sql);
mysql_close();
if(mysql_num_rows($result)=='0')
{
echo"<font color='#FF0000' size='4'>ไม่พบข้อมูลที่ต้องการสืบค้น !</font>";
}
else
{
while($rs=mysql_fetch_array($result))
{
echo"<tr>";
echo"<tr bgcolor=#FFCCCC div align=center>";
echo "<td>$rs[s_id]</td>";
echo"<td>$rs[s_title]</td>";
echo"<td>$rs[s_name]</td>";
echo"<td>$rs[s_lasname]</td>";
echo"<td>$rs[s_class]</td>";
echo"<td>$rs[s_room]</td>";
echo"<td>$rs[h_day] $rs[h_mouth] $rs[h_year]</td>";
echo"<td>$rs[h_cause]</td>";
//echo"<td><a href='from_edit.php?stcode=$rs[ID_home]'><img src='../../image/b_edit.png' width='14' height='14'></a></td>";
//echo"<td><a href='del.php?stcode=$rs[ID_home]'><img src='../../image//b_drop.png' width='14' height='14'></a></td>";
echo"</tr>";
echo"</drv>";
}
}
}
?>
</table>
<div align="left"><br>
<a href="../index.php"><img src="images/home.gif" width="15" height="15">หน้าหลัก</a>
<br>
</div>
|
|
|
|
|
Date :
2011-09-02 19:31:58 |
By :
wittayakorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo $sql ออกมาแล้ว copy ไปคิวรี่ใน phpmyadmin ดูครับ
|
|
|
|
|
Date :
2011-09-02 21:50:44 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|