-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
55 lines (54 loc) · 2.11 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
<?php
require 'connection.php';
session_start();
include 'includes/head.php';
$pro=$_GET['id'];
$loc ="SELECT * FROM shop WHERE address = '$pro' ";
$shp = $con->query($loc);
?>
<div>
<?php
require 'header.php';
?>
<div id="bannerImage">
<div class="container">
<center>
<div id="bannerContent">
<h1>Local Mart</h1>
<p>Flat 40% OFF on First Order</p>
<a href="products.php" class="btn btn-danger">Shop Now</a>
</div>
</center>
</div>
</div>
<div class="container">
<div class="row">
<?php while($shh = mysqli_fetch_assoc($shp)) : ?>
<div class="catbox">
<div class="thumbnail">
<a href="products.php?eu=<?= $shh['shopname']; ?>">
<img src="img/<?= $shh['img']; ?>" alt="<?= $shh['shopname']; ?>">
</a>
<center>
<div class="caption">
<br>
<p id="autoResize"><?= $shh['shopname']; ?></p>
<!-- <p>Choose among the best available</p> -->
</div>
</center>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<br><br> <br><br><br><br><br>
<footer class="footer">
<div class="container">
<center>
<p>Copyright © Local Mart. All Rights Reserved. | Contact Us: +91 90000 00000</p>
<p>the place to grow your business</p>
</center>
</div>
</footer>
</body>
</html>