-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
68 lines (63 loc) · 2.09 KB
/
Copy pathindex.php
File metadata and controls
68 lines (63 loc) · 2.09 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
include("inc/header.php");
include("inc/slider.php");
?>
<div class="main">
<div class="content">
<div class="content_top">
<div class="heading">
<h3>Feature Products</h3>
</div>
<div class="clear"></div>
</div>
<div class="section group">
<?php
$getFeaturedPd = $pd->getFeaturedProduct();
if ($getFeaturedPd) {
while ($fpd = $getFeaturedPd->fetch_assoc()) {
?>
<div class="grid_1_of_4 images_1_of_4">
<a href="details.php?pdid=<?php echo $fpd['pid'];?>"><img src="admin/<?php echo $fpd['image']; ?>" style="width:100%;height:140px;" alt="" /></a>
<h2><?php echo $fpd['productName'];?></h2>
<p><?php echo $fm->textShorten($fpd['body'], 50);?></p>
<p><span class="price">$ <?php echo $fpd['price'];?></span></p>
<div class="button"><span><a href="details.php?pdid=<?php echo $fpd['pid'];?>" class="details">Details</a></span></div>
</div>
<?php
}
}else{
echo "<span class='error'>No product found.</span>";
}
?>
</div>
<div class="content_bottom">
<div class="heading">
<h3>New Products</h3>
</div>
<div class="clear"></div>
</div>
<div class="section group">
<?php
$getNewPd = $pd->getNewProduct();
if ($getNewPd) {
while ($newpd = $getNewPd->fetch_assoc()) {
?>
<div class="grid_1_of_4 images_1_of_4">
<a href="details.php?pdid=<?php echo $newpd['pid'];?>"><img src="admin/<?php echo $newpd['image']; ?>" style="width:100%;height:140px;" alt="newproduct" /></a>
<h2><?php echo $newpd['productName'];?></h2>
<p><?php echo $fm->textShorten($newpd['body'], 50);?></p>
<p><span class="price">$ <?php echo $newpd['price'];?></span></p>
<div class="button"><span><a href="details.php?pdid=<?php echo $newpd['pid'];?>" class="details">Details</a></span></div>
</div>
<?php
}
}else{
echo "<span class='error'>No product found.</span>";
}
?>
</div>
</div>
</div>
<?php
include("inc/footer.php");
?>