|
|
|
ขอรบกวนสอบถามกูรู เรื่อง fetch array ออกเป็น table ครับ ยิ่งทำยิ่งงง ยิ่งงงยิ่งมึน |
|
|
|
|
|
|
|
เอาโค๊ดมาดูครับ
|
|
|
|
|
Date :
2013-05-21 08:50:34 |
By :
pklangkua |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดการที่ Query ดี ๆ จะช่วยให้การ fetch นั้นง่ายและสะดวกครับ
|
|
|
|
|
Date :
2013-05-21 09:04:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ประมาณนี้ครับผม table เก็บข้อมูลไว้แค่ ๒ อย่าง แต่อยากให้ออกไปทางด้านข้าง เช่น ถึง 10 แล้ว ไปต่อ 11 ข้างขวามือ ไม่ยาวลงข้างล่างนะครับ
Code (PHP)
<?
$goldnums = $_POST['gold_num'];
$goldprice = $_POST['gold_pri'];
<form name="inputnum" method="post" action="pushin.php">
<table width=30% style="text-align:center;" bgcolor="#0066ff" border=0>
<tr><td style="color:#ffffff;"><b></b></td></tr>
<tr>
<td colspan=2><input id="setfocus" type="text" style="text-align:right;" name="gold_num" />
<input type="text" style="text-align:right;" name="gold_pri" /><input type="submit" value="+" size="3"></td>
</tr>
</table>
</form>
if($goldnums!="" and $goldprice!=""){
$sql = "select * from goldnum order by goldnumber;";
$result = mysql_db_query($dbs,$sql)or die('error query') ;
$num = mysql_num_rows($result);
print "<table border=0 style='text-align:center;' width=15%>";
print "<tr><td style='color:#ffffff;' width=50% bgcolor=#0066ff><b>Goods</b></td>
<td style='color:#ffffff;' width=50% bgcolor=#0066ff><b>Price</b></td></tr>";
while ($record = mysql_fetch_array($result)){
print "<tr bgcolor=#daf7fa>";
print "<td>$record[1]</td>";
print "<td>$record[2]</td>";
print "</tr>";
}
print "</table>";
}
?>
|
ประวัติการแก้ไข 2013-05-21 09:55:48 2013-05-21 09:57:37 2013-05-21 10:23:04 2013-05-21 10:24:46 2013-05-21 13:02:10 2013-05-21 13:02:57
|
|
|
|
Date :
2013-05-21 09:55:11 |
By :
Broom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับผม
|
|
|
|
|
Date :
2013-05-22 07:52:38 |
By :
Broom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|