-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
181 lines (106 loc) · 6.46 KB
/
footer.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
?>
<div id="footer"><!-- #footer Begin -->
<div class="container"><!-- container Begin -->
<div class="row"><!-- row Begin -->
<div class="col-sm-6 col-md-2"><!-- col-sm-6 col-md-3 Begin -->
<h4>Customer Section</h4>
<ul><!-- ul Begin -->
<li><a href="checkout.php">Login</a></li>
<li><a href="customer_register.php">Register</a></li>
</ul><!-- ul Finish -->
<hr>
<h4>Admin Section</h4>
<ul><!-- ul Begin -->
<li><a href="admin-dashboard/register.php">Register</a></li>
<li><a href="admin-dashboard/login.php">Login</a></li>
</ul><!-- ul Finish -->
<hr class="hidden-md hidden-lg hidden-sm">
</div><!-- col-sm-6 col-md-3 Finish -->
<div class="com-sm-6 col-md-2"><!-- col-sm-6 col-md-3 Begin -->
<h4>Top Products Categories</h4>
<?php
$get_cat= "select * from product_categories";
$run_cat= mysqli_query($con,$get_cat);
while($row_cat= mysqli_fetch_array($run_cat))
{
$cat_title= $row_cat['p_cat_title'];
echo "
<ul>
<li><a href='#'>$cat_title</a></li>
";
}
?>
<li> For more to visit</li>
</ul>
<hr class="hidden-md hidden-lg">
</div>
<div class="com-sm-6 col-md-2"><!-- col-sm-6 col-md-3 Begin -->
<h4> Categories</h4>
<?php
$get_cat= "select * from categories ";
$run_cat= mysqli_query($con,$get_cat);
while($row_cat= mysqli_fetch_array($run_cat))
{
$cat_title= $row_cat['cat_title'];
echo "
<ul>
<li><a href='#'>$cat_title</a></li>
";
}
?>
<li> For more to visit</li>
</ul>
<hr class="hidden-md hidden-lg">
</div>
<!-- col-sm-6 col-md-3 Finish -->
<div class="col-sm-6 col-md-3"><!-- col-sm-6 col-md-3 Begin -->
<h4>Reach Us</h4>
<p><!-- p Start -->
<strong>shopping Online Service</strong>
<br/>Mumbai
<br/>India
<br/>9702620581
<br/>[email protected]
<br/><strong>Mr. Anand Maurya</strong>
</p><!-- p Finish -->
<a href="contact.php">Check Our Contact Page</a>
<hr class="hidden-md hidden-lg">
</div><!-- col-sm-6 col-md-3 Finish -->
<div class="col-sm-6 col-md-3">
<h4>Get The Update</h4>
<p class="text-muted">
Don't forget to subscribe us to get the news regarding the latest products
</p>
<form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=M-devMedia', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" method="post"><!-- form begin -->
<div class="input-group"><!-- input-group begin -->
<input type="text" class="form-control" name="email">
<input type="hidden" value="Anand-Shoppee" name="uri"/><input type="hidden" name="loc" value="en_IND"/>
<span class="input-group-btn"><!-- input-group-btn begin -->
<input type="submit" value="subscribe" class="btn btn-default">
</span><!-- input-group-btn Finish -->
</div><!-- input-group Finish -->
</form><!-- form Finish -->
<hr>
<h4>Keep In Touch</h4>
<p class="social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-google-plus"></a>
<a href="#" class="fa fa-envelope"></a>
</p>
</div>
</div><!-- row Finish -->
</div><!-- container Finish -->
</div><!-- #footer Finish -->
<div id="copyright"><!-- #copyright Begin -->
<div class="container"><!-- container Begin -->
<div class="col-md-6"><!-- col-md-6 Begin -->
<p class="pull-left">© Online Shopping Website | All rights reserved |</p>
</div><!-- col-md-6 Finish -->
<div class="col-md-6"><!-- col-md-6 Begin -->
Design and Developed by <a href="https://knowabout-me.000webhostapp.com">Anand Maurya</a>
</div><!-- col-md-6 Finish -->
</div><!-- container Finish -->
</div><!-- #copyright Finish -->