New Text Document
New Text Document
php
$sachdb=new sach_model();
if(isset($_GET['maloai']))
{
$booklist=$sachdb->sach1loai($_GET['maloai']);
}
else
$booklist=$sachdb->getall();
$tong=$sachdb->getrowcount();
foreach($booklist as $key)
{
?>
<div class="templatemo_product_box">
<h1><?php echo $key['tensach'];?></h1>
<img src="images/sach/<?php echo $key['hinh'];?>" alt="image" />
<div class="product_info">
<p><?php echo substr($key['mota'],0,50);?> </p>
<h3><?php echo $key['gia'];?></h3>
<form action="index.php" method="POST">
<input type="hidden" name="item" value="<?php echo $key['masach'] ?>">
<input type="submit" name="themitem" value="Mua" class="buy_now_button my-btn"
style="cursor:pointer;">
</form>
<div class="detail_button"><a href="#">Chi tiet ...</a></div>
</div>
</div>
<?php } ?>