-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutlets.php
53 lines (47 loc) · 1.93 KB
/
outlets.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
<?php
include('top_header.php');
echo "<title>Outletdetails</title>";
include('connection.php');
include('header.php');
?>
<center>
<div class="container-fluid " >
<div class="col-md-9">
<div class=" col-md-7 col-sm-12">
<img src="images\outlets.png" alt="" width="100%" height="100%">
</div>
<div class="row" align="center">
<?php
$sql = "select * from outlets ";
$res=mysqli_query($conn,$sql);
if(!$res){
die("Error in image".mysqli_error($conn));
}
while($row = mysqli_fetch_assoc($res)){ ?>
<div class="col-md-4 sm-12">
<div class="card btn " id="product" style="margin:20px; padding:5px;">
<a href="product_details.php"> <img src="upload_outlet\<?php echo "".$row['image']; ?>" class="card-img-top" alt="..."></a>
<div class="card-body">
<h4><a style="text-decoration:none" href="product_details.php"><?php echo "".$row['outlet_name']; ?></a></h4>
<p class="card-text"><a style="text-decoration:none" href="product_details.php"><?php echo "".$row['outlet_description']; ?></a></p>
<div class="row">
<label class="col-6" ><a style="text-decoration:none" href="product_details.php?pid=1" ><span class="
color: #fff;
text-decoration: none;">Mored etails</span></a></label>
<label class="col-6"><a style="text-decoration:none" href="product_details.php"><?php echo "".$row['outlet_province']; ?></a></label>
</div>
<div class="row">
<button class=" btn-primary" type="submit" name="button"><i class="icon fa fa-shopping-cart" style="margin-right:10px;"></i>Details</button>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
</center>
<?php
include("footer.php");
?>