|
|
|
รบกวนช่วยแก้ไขการใส่โค๊ตแบ่งหน้าให้ด้วยค่ะ |
|
|
|
|
|
|
|
ช่วยใส่โค๊ตแบ่งหน้าได้ไหมค่ะ
Code (PHP)
<html>
<head>
<title>My Shop - หน้าแสดงรายการสินค้า</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 {
FONT-FAMILY: Arial, Helvetica, sans-serif
}
.style2 {font-family: tahoma}
.style3 {
color: #FF0000;
font-size: 36px;
}
.style4 {font-size: 28px}
</style>
</head>
<body>
<center><b><u><font size="5">หน้าแสดงรายการสินค้า</font></u></b></center><br><br>
<center>
<p>[ <a href="cart.php" >ตะกร้าสินค้า</a> ] [ <a href="manageorder.php">แสดงรายการคำสั่งซื้อ</a> ]
</p>
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col"><div align="right">
<table width="168" height="58" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="55" height="58" align="center" valign="middle" background="images/bag.png" scope="col"><table width="30" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col"> </th>
</tr>
<tr>
<th scope="col"><div align="center" class="style3 style4"><a href="cart.php"><?php echo "$_SESSION[totalqty]";?></a></div></th>
</tr>
</table></td>
<td width="113" valign="middle" scope="col"><div align="left">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col"> </th>
</tr>
<tr>
<td scope="col">ชิ้นในตะกร้า </td>
</tr>
</table>
</div>
<div align="left"></div></td>
</tr>
</table>
</div></th>
</tr>
</table>
</center>
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="800" id="AutoNumber1" height="155">
<tr bgcolor="#CAE4FF">
<td width="16%" height="20" align="center"><span class="style2">
<font color="#000080">ภาพสินค้า</font></span></td>
<td width="55%" height="20" align="center"><span class="style2">
<font color="#000080">รายละเอียดสินค้า</font></span></td>
<td width="20%" align="center"><span class="style2"><font color="#000080">ราคา</font></span></td>
<td width="9%" height="20" align="center"><span class="style2">
<font color="#000080">สั่งซื้อ</font></span></td>
</tr>
<?php
include("cart.inc.php");
// คำสั่ง SQL ที่ใช้ในการเลือกข้อมูลที่อยู่ในฐานข้อมูลกลับมา (เรียงตามลำดับ ID)
$result = mysql_query("select * from product");
$num = mysql_num_rows($result) ;
if($num==0) {
echo "---ไม่มีรายการสินค้า---" ;
}
else
/* ในลูปด้านล่าง เทียบได้กับการดึงข้อมูลมาทีละ 1 Record เพื่อนำมาแสดงผลทางหน้าจอ */
while($dbarr = mysql_fetch_array($result)) {
?>
<tr>
<td width="16%" align="center" height="127">
<a href="<?php echo $dbarr['product_link'] ; ?>" target="_blank"><img src="<?php echo $dbarr['product_picture'] ; ?>" alt="คลิกเพื่อดูรายละเอียด" width="125" height="125" border="0"></a> </td>
<td width="55%" height="127" align="center" valign="middle">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
<tr>
<td align="right" valign="top"><p align="right"><strong><font size="2" color="#800000"> ชื่อสินค้า :</font></strong></td>
<td> </td>
<td><strong><font size="2" color="#000080"><?php echo $dbarr['product_name'] ; ?></font></strong></td>
</tr>
<tr>
<td width="18%" align="right" valign="top">
<p align="right"><font size="2" color="#800000">
รหัสสินค้า :</font></td>
<td width="2%"> </td>
<td width="80%"><font size="2" color="#000080"><?php echo $dbarr['product_id'] ; ?></font></td>
</tr>
<tr>
<td width="18%" align="right" valign="top">
<font size="2" color="#800000">
หมวดหมู่ :</font></td>
<td width="2%"> </td>
<td width="80%"><font size="2" color="#000080">
<?php echo $dbarr['product_group'] ; ?></font></td>
</tr>
<tr>
<td align="right" valign="top"><font size="2" color="#800000">รายละเอียด :</font></td>
<td> </td>
<td><font size="2" color="#000080"><?php echo $dbarr['product_detail'] ; ?></font></td>
</tr>
</table>
</td>
<td width="20%" align="center" valign="middle"><table width="95%" border="0" align="right" cellpadding="0" cellspacing="0" bordercolor="#111111" id="AutoNumber2" style="border-collapse: collapse">
<tr>
<td align="right" valign="top"><p align="right"><font size="2" color="#800000"> ราคาขายปลีก :</font></td>
<td> </td>
<td><font size="2" color="#000080"><s><?php echo number_format($dbarr['product_price_c']) ; ?> บาท</s> </font></td>
</tr>
<tr>
<td width="27%" align="right" valign="top"><strong><font size="2" color="#800000">ราคาพิเศษ:</font></strong></td>
<td width="3%"> </td>
<td width="70%"><strong><font size="2" color="#000080"><?php echo number_format($dbarr['product_price']) ; ?> บาท </font></strong></td>
</tr>
</table></td>
<td width="9%" align="center" height="127"><form name="form1" method="post" action="cart.php"><A
href="happylifeplus.php">
<input name="add" type="hidden" value="<?php echo $dbarr['product_name'] ; ?>">
<input name="price" type="hidden" value="<?php echo $dbarr['product_price'] ; ?>">
<input name="pv" type="hidden" id="pv" value="<?php echo $dbarr['product_pv'] ; ?>">
<input name="qty" type="hidden" id="qty" value="1">
<input type="hidden" name="product_id" value="<?php echo $dbarr['product_id'] ; ?>">
</A>
<INPUT
name=submit type=image src="images/addtocart.gif" alt="หยิบใส่ตะกร้า"
align=absMiddle width="64" height="19" vspace=3
border=0>
</form></td>
</tr>
<?php
}
?>
</table>
</center>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-06-13 21:39:42 |
By :
มายด์ |
View :
752 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆนะค่ะ
ขอไปลองก่อนค่ะ ถ้าไม่ได้ยังไงเดี๋ยวกลับมาถามค่ะ
|
|
|
|
|
Date :
2011-06-13 21:44:29 |
By :
มายด์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้เรียบร้อยแล้วค่ะ
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2011-06-13 22:25:39 |
By :
มายด์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|