-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
25 lines (19 loc) · 995 Bytes
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="left-sidebar">
<h2>Category</h2>
<div class="panel-group category-products" id="accordian"><!--category-productsr-->
<?php
$mydb->setQuery("SELECT * FROM `tblcategory`");
$cur = $mydb->loadResultList();
foreach ($cur as $result) {
echo ' <div class="categ panel panel-default">
<div class="panel-heading">
<h4 class="panel-title"><a href="index.php?q=product&category='.$result->CATEGORIES.'" >'.$result->CATEGORIES.'</a></h4>
</div>
</div>';
}
?>
</div><!--/category-products-->
<div class="shipping text-center"><!--shipping-->
<img src="images/home/downloaddd.png" alt="" />
</div><!--/shipping-->
</div>