-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
58 lines (52 loc) · 2 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
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
<?php include "inc/header.php"; ?>
<?php include "inc/slider.php"; ?>
<section>
<div class="container">
<div class="row"><!-- category -->
<?php include "inc/category.php"; ?><!--end category -->
<div class="col-sm-9 padding-right">
<div class="features_items"><!--features_items-->
<h2 class="title text-center">Latest Items</h2>
<?php
$getfpd=$pd->getfproduct();
if($getfpd){
while($result=$getfpd->fetch_assoc()){
?>
<div class="col-sm-4">
<div class="product-image-wrapper">
<div class="single-products">
<div class="productinfo text-center">
<img src="fashop/image/black.jpg" alt="saad" height="249" width="268" />
<h2><?php echo $result['productprice']; ?></h2>
<p><?php echo $result['productname']; ?></p>
<a href="details.php?prodet=<?php echo $result['productid'];?>" class="btn btn-default add-to-cart"><i class="fa fa-shopping-cart"></i>Details</a>
</div>
<div class="product-overlay">
<div class="overlay-content">
<h2><?php echo $result['productprice']; ?></h2>
<p"><?php echo $result['productname']; ?></p>
<a href="details.php?prodet=<?php echo $result['productid'];?>" class="btn btn-default add-to-cart"><i class="fa fa-shopping-cart"></i>Details</a>
</div>
</div>
</div>
<!--<div class="choose">
<ul class="nav nav-pills nav-justified">
<li><a href="#"><i class="fa fa-plus-square"></i>Add to wishlist</a></li>
<li><a href="#"><i class="fa fa-plus-square"></i>Add to compare</a></li>
</ul>
</div>-->
</div>
</div>
<?php
}
}
else{
echo '<span style="text-align:center;margin-left:400px;color:red;font-size:20px;"><p>No Item Found</p></span>';
}
?>
</div><!--features_items-->
</div>
</div>
</div>
</section>
<?php include "inc/footer.php"; ?>