-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
33 lines (30 loc) · 1.13 KB
/
index.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
26
27
28
29
30
31
32
33
<?php
session_start();
$pageTitle = 'Home Page';
include("init.php");
?>
<div class="container cat-edit">
<h1 class="text-center">Show Category</h1>
<div class="row md-3">
<?php
$allAds = getAllstatic('items','WHERE Approve = 1');
foreach($allAds as $item){ // loop for items in category with the page id
echo
'<div class="col-lg-3 col-md-4 col-sm-6">
<div class="card item-box">
<img src="layout/img/avatar.png" alt="..." class="card-img-top img-thumbnail img-fluid">
<div class="caption card-body dis-cat">
<h3><a href="items.php?itemid='.$item['Item_ID'].'">'.$item['Name'].'</a></h3>
<p>'.$item['Description'].'</p>
<span class="price">$'.$item['Price'].'</span>
<div class="date text-muted">'.$item['Add_Date'].'</div>
</div>
</div>
</div>';
}
?>
</div>
</div>
<?php
include("include/templates/footer.php");
?>