|
|
|
แสดงผลข้อมูลที่ได้จากการ query แบบ คอลัมน์ ช่วยด้วยด่วน |
|
|
|
|
|
|
|
<body>
<table width="221" border="1" align="center">
<tr>
<td>Type</td>
<?PHP for($i=0; $i<=3; $i++) {?>
<td>Product</td><?PHP }?>
</tr>
<tr>
<td>id</td>
<td> * ตรงที่ใสโค้ด PHP เข้าไปเลยครับคือข้อมูลที่อยากให้โช</td>
</tr>
<tr>
<td>name</td>
<td> </td>
</tr>
<tr>
<td>address</td>
<td> </td>
</tr>
</table>
</body>
|
|
|
|
|
Date :
27 ต.ค. 2551 18:54:57 |
By :
array |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคะ คุณ array
แต่ยังมีข้อสงสัยอยากถามอีกนิดนึงคะ
จากโค้ดที่คุณให้มา
มันจะลูปเฉพาะแถวที่เป็น product อ่ะคะ
แล้วจะทำยังไงให้มันแสดง name, detail ของ product แต่ละตัวด้วยละคะ
รบกวนตอบด้วยนะคะ
|
|
|
|
|
Date :
28 ต.ค. 2551 08:53:28 |
By :
เด็กแว่น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็เหมือนกัน คุณต้องเก็บข้อมุลแต่ละตัวไว้ในอาเรก่อนแล้วหาว่าอาเรตัวไหนมากสุดแล้วค่อยมาวนลูปแต่ละคอลัมอย่างที่คุณ array ทำ
|
|
|
|
|
Date :
28 ต.ค. 2551 15:03:31 |
By :
นินา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากคะสำหรับคำแนะนำ ทั้งในส่วนของคุณ array และคุณ นินา
|
|
|
|
|
Date :
29 ต.ค. 2551 10:33:12 |
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:59:51 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|