Psyduck - 可達鴨 之 鴨力山大 v0.1
Current File : /home/irplbiz/public_html/universalleather/products-details.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">Product Details</h1>
<div id="content_1" class="content">
<ul class="prod-list02 prode-01">
<?php
$sql1="select * from ".$ptr."product WHERE id='".$_REQUEST['prod_id']."'" ;
$row1=mysql_query($sql1);
$res1=mysql_fetch_assoc($row1);
?>
<strong style="font-size:14px;"><?php echo $res1['title'];?></strong>
<li>
<div class="pro-img"> <img src="admin/gallery/big/<?php echo $res1['image'];?>" alt="#" /></div>
<div class="pro-des">
<?php echo $res1['details'];?>
</div>
</li>
</ul>
</div>
</div>
<!--============================================ end of body-right ================================================-->
</div>
<div class="defalt-row">
<div class="main">
<!--============================================ start of footer panel ================================================-->
<?php include('includes/footer.php'); ?>