forked from MuktaGhosh/Automated-Food-Ordering-System
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproducts.php
33 lines (25 loc) · 1.03 KB
/
products.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 include 'inc/header.php';?>
<div class="main">
<div class="content">
<div class="content_top">
<div class="heading">
<h3>All Food Items</h3>
</div>
<div class="clear"></div>
</div>
<div class="section group">
<?php
$getFpd = $pd->getAllProduct();
if ($getFpd) {
while ($result = $getFpd->fetch_assoc()) {
?>
<div class="grid_1_of_4 images_1_of_4">
<a href="details.php?proid=<?php echo $result['productId']; ?>"><img src="admin/<?php echo $result['image']; ?>" alt="" /></a>
<h2><?php echo $result['productName']; ?></h2>
<p><?php echo $fm->textShorten($result['body'], 60); ?></p>
<p><span class="price"><?php echo $result['price']; ?></span></p>
<div class="button"><span><a href="details.php?proid=<?php echo $result['productId']; ?>" class="details">Details</a></span></div>
</div>
<?php } } ?>
</div>
<?php include 'inc/footer.php';?>