|
|
|
การแบ่งหน้าแบบนี้ทำอย่างไร คือ เห็นตามเว็บขายสินค้าค่ะ เขาเขียนดึงจากฐานข้อมูลสินค้า ให้แบ่งสินค้าออกเป็น 2 คอลัมน์ |
|
|
|
|
|
|
|
ง่าคล้ายๆ งานที่ผมทำเลย ก็เลยลองเอามาส่วนหนึ่งมาให้ลองดูนะครับ
<?
while($SBFrow = mysql_fetch_array($SBFresult))
{
print "<tr>";
for($i=0;$i<$numfield;$i++)
{
print "<th >".mysql_field_name($SBFresult,$i);
}
}
?>
อันบนนี้จะเป็นการดึงข้อมูลออกมาแบบแถวต่อแถว ถ้าอยากแบ่งออกเป็น 2 คอลัม ลองดูอันนี้ครับ
<?
while($SBFrow = mysql_fetch_array($SBFresult))
{
print "<tr>";
for($i=0;$i<$numfield;$i++)
{
print "<th >".mysql_field_name($SBFresult,$i);
$i++;
print "<th >".mysql_field_name($SBFresult,$i);
}
}
?>
ลองดูนะครับ เพื่อจะคร้ายๆ กัน
|
|
|
|
|
Date :
22 พ.ย. 2549 14:01:48 |
By :
terng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง ตรง <th> ค่ะ มีแท็กนี้ด้วยเหรอ
|
|
|
|
|
Date :
23 พ.ย. 2549 15:31:48 |
By :
ช่วยด้วย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
?>
<html>
<head>
<title>ThaiCreate.Com Multiple Column</title>
</head>
<body>
<div align="center">
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM gallery ORDER BY GalleryID ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo"<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr>";
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
echo "<td>";
?>
<table width="91" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><a href="gallery/<?=$objResult["Picture"];?>" target="_blank"><img src="gallery/<?=$objResult["Thumbnails"];?>" width="70" height="53" border="0"></a></div></td>
</tr>
<tr>
<td><div align="center"><?=$objResult["GalleryName"];?></div></td>
</tr>
</table>
<?
echo"</td>";
if(($intRows)%2==0)
{
echo"</tr>";
}
else
{
echo "<td>";
}
}
echo"</tr></table>";
?>
<?
mysql_close($objConnect);
?>
</div>
</body>
</html>
Ref : Multiple Column แสดงข้อมูลจากฐานข้อมูลด้วยการแบ่งออกเป็นหลาย Column
|
|
|
|
|
Date :
2009-11-13 06:56:20 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|