|
|
|
ช่วยด้วยครับผม โค้ดนี่มันเป็นโค้ด เลือกประเภทของสินค้า แล้วสามารถ กด Next ไปได้ แต่มัน จะไปเลือกหน้าของประเภทสินค้าอื่นอีก |
|
|
|
|
|
|
|
ได้แล้วคราฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟฟ จง เสพพพพพพพ สะ
ตาราง type_list
Code (PHP)
<?
$sql="select * from tb_type order by id_type ";
$id_typee = $_REQUEST[id_typee];
$result=mysql_query($sql);
while ($rs=mysql_fetch_array($result)) {
$id_type=$rs[id_type];
$name_type=$rs[name_type];
echo "<LI><A HREF='prd_list.php?id_typee=$id_type'>$name_type</A> </LI>";
}
echo "</UL>";
?>
|
|
|
|
|
Date :
2013-02-02 18:02:19 |
By :
vopelno |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prd_list.php
Code (PHP)
<?
$id_type_select=$_GET[id_type];
include "connect2.php";
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: small;
color: #000000;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-image: url();
}
a {
font-family: Tahoma;
font-size: small;
color: #000000;
}
a:hover {
color: #9e3026;
}
-->
</style>
<title>ระบบจำหน่ายเสื้อผ้าทางอินเตอร์เน็ต</title></head>
<body bgcolor="#ffcadc">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td><? include "head_member.php"; ?></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="200" valign="top"><div align="center"><br>
[ <a href="member2.php">รายการใบสั่งซื้อ</a> ]<br>
<br>
<? include "manu_left.php"; ?>
</div>
<div align="center"><br />
<br />
</div></td>
<td valign="top"><p align="center">
<br>
</p>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
<tr>
<td><?
$strSQL = "SELECT * FROM tb_product where ref_id_type='$id_type_select'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 6; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
if ($id_typee==""){
$strSQL ="select * from tb_product order by id_prd desc LIMIT $Page_Start , $Per_Page";
}else{
$strSQL ="select * from tb_product where ref_id_type='$id_typee' order by id_prd desc LIMIT $Page_Start , $Per_Page";
}
mysql_query("SET NAMES 'tis620' ");
$objQuery = mysql_query($strSQL);
while ($rs=mysql_fetch_array($objQuery)) {
$id_prd=$rs[id_prd];
$code=sprintf("%05d",$id_prd);
$name_prd=$rs[name_prd];
$detail_prd=$rs[detail_prd];
$ref_id_type=$rs[ref_id_type];
$price_prd=$rs[price_prd];
$photo_prd=$rs[photo_prd];
$uu=$rs[prop];
if ($photo_prd=="") {
$photo_prd="temp.jpg";
}
echo "<TR>
<TD WIDTH='20%' VALIGN='top'>
<IMG SRC='photo/$photo_prd' width='200' height='200'>
</TD>
<TD WIDTH='80%' VALIGN='top'>
<B>รหัสสินค้า :</B> $code <BR>
<B>ชื่อสินค้า : </B>$name_prd <BR>
<B>ราคา :</B> $price_prd บาท<BR>
<BR>";
if ($rs[unit_prd]==0){
echo"<b>ขออภัยสินค้าหมดชั่วคราว</b>";
}else{
echo"[ <A HREF='prd_view.php?id_prd=$id_prd'>แสดงรายละเอียด </A>]
[ <A HREF='basket_add.php?id_prd=$id_prd'>หยิบใส่ตะกร้า </A>] <BR>";
}
echo"</TD></TR>";
}
?></td>
</tr>
</table>
<br>
<table width="92%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td ><div align="center">รวมจำนวน
<?= $Num_Rows;?>
รายการ :
<?=$Num_Pages;?>
หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&id_typee=$id_typee'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&id_typee=$id_typee'>Next>></a>";
}
mysql_close();
?>
<br />
<br />
</div></td>
</tr>
</table>
<br></td>
</tr>
</table>
</a>
</td>
</tr>
<tr>
<td width="778" height="25"><? include "member_foot.php"; ?></td>
</tr>
</table>
</body>
</html>
|
ประวัติการแก้ไข 2013-02-02 18:03:33
|
|
|
|
Date :
2013-02-02 18:02:41 |
By :
vopelno |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|