Psyduck - 可達鴨 之 鴨力山大
Current File : /home/irplbiz/public_html/universalleather/products.php |
<?php include('includes/header.php'); ?>
<!--============================================ end of header panel ================================================-->
<?php include('includes/category1.php'); ?>
<!--============================================ end of body-left ================================================-->
<div class="body-right">
<h1 class="title01">Products</h1>
<div id="content_1" class="content">
<ul class="prod-list02">
<?php
if(isset($_REQUEST['prod_id']))
{
$sql1="select * from ".$ptr."product WHERE category='".$_REQUEST['prod_id']."' order by id DESC " ;
} else {
$sql1="select * from ".$ptr."product order by id DESC" ;
}
$row1=mysql_query($sql1);
if(mysql_num_rows($row1)>0)
{
while($res1=mysql_fetch_assoc($row1))
{ ?>
<li>
<div class="pro-img"><a href="products-details.php?prod_id=<?php echo $res1['id'];?>"><img src="admin/gallery/thumb/<?php echo $res1['image'];?>" alt="#" /></a></div>
<div class="pro-des">
<?php echo $res1['details'];?>
</div>
</li>
<!-- <li>
<div class="pro-img"><img src="images/prod-list2.jpg" alt="#" /></div>
<div class="pro-des">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
<br /><br />
standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
</div>
</li>
<li>
<div class="pro-img"><img src="images/prod-list3.jpg" alt="#" /></div>
<div class="pro-des">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
<br /><br />
standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
</div>
</li>
<li>
<div class="pro-img"><img src="images/prod-list3.jpg" alt="#" /></div>
<div class="pro-des">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
<br /><br />
standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled
</div>
</li>-->
<?php } }?>
</ul>
</div>
</div>
<!--============================================ end of body-right ================================================-->
</div>
<div class="defalt-row">
<div class="main">
<!--============================================ start of footer panel ================================================-->
<?php include('includes/footer.php'); ?>