|
|
|
ถ้าเราจะวน loop ให้รายละเอียดสินค้าทั้งหมดขึ้มมาจากฐานข้อมูล ต้องใส่โค้ดตรงไหนครับ |
|
|
|
|
|
|
|
ถ้าเราจะวน loop ให้รายละเอียดสินค้าทั้งหมดขึ้มมาจากฐานข้อมูล ต้องใส่โค้ดตรงไหนครับ
Code (PHP)
<html>
<head>
<title>Unicity</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<script language="javascript">
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
</script>
<style>
BODY <?php
include "dbconfig.php";
conndb();
$sqltxt = "SELECT * FROM product";
$result = mysql_query ( $sqltxt, $conn );
$rs = mysql_fetch_array ( $result );
?>
{
FONT-FAMILY: Arial, Helvetica, sans-serif
}
</style>
</head>
<body>
<center><b><u><font size="5">หน้าแสดงรายการสินค้า</font></u></b></center><br><br>
<center>[ <a href="cart.php" onClick="NewWindow(this.href,'name','600','400','yes');return false">ตะกร้าสินค้า</a> ] [ <a href="manageorder.php">แสดงรายการคำสั่งซื้อ</a> ]</center>
<br><br>
<center></center>
<br><br>
<center></center>
<br><br>
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="60%" id="AutoNumber1" height="149">
<tr>
<td width="51%" bgcolor="#CCCCFF" align="center" height="20"><b>
<font color="#000080">รายละเอียดสินค้า</font></b></td>
<td width="14%" bgcolor="#CCCCFF" align="center" height="20"><b>
<font color="#000080">สั่งซื้อ</font></b></td>
</tr>
<tr>
<td width="51%" align="center" height="128">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
<tr>
<td width="27%" align="right">
<p align="right"><font size="2" color="#800000">
รหัสสินค้า :</font></td>
<td width="3%"> </td>
<td width="70%"><font size="2" color="#000080"><?php echo $rs["pro_id"] ?></font></td>
</tr>
<tr>
<td width="27%" align="right">
<p align="right"><font size="2" color="#800000">
ชื่อสินค้า :</font></td>
<td width="3%"> </td>
<td width="70%"><font size="2" color="#000080"><?php echo $rs["productName"] ?></font></td>
</tr>
<tr>
<td width="27%" align="right">
<font size="2" color="#800000">
ราคา :</font></td>
<td width="3%"> </td>
<td width="70%"><font size="2" color="#000080"> <?php echo $rs["productPrice"] ?> บาท</font></td>
</tr>
<tr>
<td width="27%" align="right">
<font size="2" color="#800000">
PV ต่อชิ้น :</font></td>
<td width="3%"> </td>
<td width="70%"><font size="2" color="#000080">
<?php echo $rs["productPV"] ?></font></td>
</tr>
<tr>
<td width="27%" align="right">
<font size="2" color="#800000">
เหลือ :</font></td>
<td width="3%"> </td>
<td width="70%"><font size="2" color="#000080"><?php echo $rs["inventory"] ?></font></td>
</tr>
</table>
</td>
<td width="14%" align="center" height="128"><b>
<font color="#000080"><a href="order.php?product_id=5" onClick="NewWindow(this.href,'name','600','400','yes');return false">[สั่งซื้อ]</a></font></b></td>
</tr>
</table>
</center>
<br><br>
<center></center>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-10-11 21:45:53 |
By :
outlaww |
View :
821 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูตัวอย่างครับ
Code (PHP)
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
Go to : PHP MySQL List Record
|
|
|
|
|
Date :
2011-10-12 06:42:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|