ช่วยดู code ให้หน่อยครับ ทำไม่ตารางแยกออกจากกัน
<html>
<meta http-equiv="content-type" content="text/html; charset=windows-874">
<style type=text/css>
body {font-family : MS Sans Serif; font-size : 10pt; color : #000000;}
td {font-size : 10pt; font-family : MS Sans Serif; color : #000000;}
.size3 {font-size : 12pt; font-family : MS Sans Serif;}
A:link {text-decoration: none; color: blue }
A:visited {text-decoration: none; color: #6495ED }
A:active {text-decoration: none; color: blue }
A:hover {text-decoration: none; color: red }
</style>
<title>แสดงรายชื่อผู้ประสานงานศิษย์เก่าแต่ละรุ่น</title>
<body>
<p align="center"><b><font size="5" face="MS Sans Serif" color="red">แสดงรายชื่อผู้ประสานงานศิษย์เก่าแต่ละรุ่น<br>โรงเรียนบ้านตาหยวก(ประชาสงเคราะห์)</font></b>
<p align="center"><?
$host="localhost";
$username="tlplearning";
$password="09420361";
$db="tlplearning";
$tb="stu";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
</p>
<table width="91%" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#CCCCFF" bordercolordark="#CCCCFF" bordercolorlight="#CCFF00" bgcolor="#FFCCFF">
<tr>
<td width="14%" bgcolor="#006600">
<div align="center"><font size="3" face="MS Sans Serif" color="white"><b>ลำดับที่</b></font></div>
</td>
<td width="36%" bgcolor="#006600">
<div align="center"><font size="3" face="MS Sans Serif" color="white"><b>ชื่อ
- สกุล</b></font></div>
</td>
<td width="29%" bgcolor="#006600">
<div align="center"><font size="3" face="MS Sans Serif" color="white"><b>รุ่นที่</b></font></div>
</td>
<td width="20%" bgcolor="#006600">
<div align="center"><font size="3" face="MS Sans Serif" color="white"><b>เบอร์โทรศัพท์</b></font></div>
</td>
<td width="20%" bgcolor="#006600">
<p align="center"> <font size="3" face="MS Sans Serif" color="white"><b>แก้ไข</b></font></p>
</td>
</tr>
</table>
<table width="91%" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#CCCCFF" bordercolordark="#CCCCFF" bordercolorlight="#CCFF00" bgcolor="#FFCCFF">
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$name=$result[name];
$number=$result[number];
$tel=$result[tel];
?>
<tr>
<td width="14%" bgcolor="#F2F7F7">
<div align="center"><font size="2" face="MS Sans Serif" color="blue"><?echo"$id";?></font></div>
</td>
<td width="36%" bgcolor="#F2F7F7">
<div align="center">
<font size="2" face="MS Sans Serif" color="blue"><?echo"$name";?></font>
</div>
</td>
<td width="29%" bgcolor="#F2F7F7">
<p align="center"><font size="2" face="MS Sans Serif" color="blue"><?echo"$number";?></font>
</td>
<td width="20%" bgcolor="#F2F7F7">
<p align="center"><font size="2" face="MS Sans Serif" color="blue"><?echo"$tel";?></font>
</td>
<td width="20%" bgcolor="#F2F7F7">
<p align="center"><a href='edit.php?id=<?echo"$id"; ?>'><font size="2" face="MS Sans Serif" color="red">แก้ไข</font></a></p>
</td>
</tr>
<?
$a++;
}
echo"<center><br>จำนวน Reccord = $num_rows</center>";
mysql_close();
?>
</table><p align="center"><b><a href="search.php"><font size="3" face="MS Sans Serif" color="red">กลับหน้าหลัก</font></a></b></p>
<p align="center"><b><font size="3" face="MS Sans Serif" color="red">พัฒนาโปรแกรมโดย
</font><a href="mailto:[email protected] "><font size="3" face="MS Sans Serif" color="blue">ครูมิญช์มนัส
สลางสิงห์</font></a></b></p>
</body>
</html>
Date :
18 ต.ค. 2548 21:30:49
By :
.....
ขอบพระคุณมากครับ แก้ไขใหม่แล้วดูผลลัพธ์ได้ที่ http://tlplearning.boxchart.com/phapa/showdata.php
--------------------------------------------------------------------------------------------------------------------------------------------------------------
แต่คำว่า จำนวน Record ไปอยู่แถวแรก ทำให้ตารางแยกออกจากกัน ผมต้องการให้คำว่า ค้นพบจำนวน Record
ไปอยู่แถวด้านล่างครับ จะต้องแก้ไข code อย่างไรครับ ท่านผู้รู้ / เว็บมาสเตอร์ช่วยตอบด้วยครับ
Date :
19 ต.ค. 2548 06:54:33
By :
ครูนิส
เปลี่ยนบรรทัดนี้ echo"<center><br>จำนวน Reccord = $num_rows</center>";
ออกมาอยู่นอก tag ของ php แล้วเขียนใหม่เป็น
<tr><td colspan="5" align="center">จำนวน Reccord = <? echo $num_rows;?></td></tr>
Date :
19 ต.ค. 2548 13:46:11
By :
b
ขอบพระคุณมากครับ แก้ไขได้แล้วครับ
Date :
26 ต.ค. 2548 06:06:36
By :
ครูนิส
Load balance : Server 01