-
Notifications
You must be signed in to change notification settings - Fork 0
/
rickshawala-info.php
206 lines (171 loc) · 7.13 KB
/
rickshawala-info.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
?>
<!DOCTYPE html>
<html class="no-js" lang="zxx">
<head>
<!-- Basic page needs
============================================ -->
<title>Easy Move || Rickshawala's Info </title>
<meta name="description" content="">
<!-- ============== All CSS ================ -->
<!-- normalize css
============================================ -->
<link rel="stylesheet" href="css1/normalize.css">
<!-- animate css
============================================ -->
<link rel="stylesheet" href="css1/animate.css">
<!-- bootstrap css
============================================ -->
<link rel="stylesheet" href="css1/bootstrap.min.css">
<!-- meanmenu css
============================================ -->
<link rel="stylesheet" href="css1/meanmenu.min.css">
<!-- font-awesome css
============================================ -->
<link rel="stylesheet" href="css1/font-awesome.min.css">
<!-- icofont css
============================================ -->
<link rel="stylesheet" href="css1/icofont.css">
<!-- change-text css
============================================ -->
<link rel="stylesheet" href="css1/change-text.css">
<!-- YTPlayer css
============================================ -->
<link rel="stylesheet" href="css1/jquery.mb.YTPlayer.min.css">
<!-- main css
============================================ -->
<link rel="stylesheet" href="css1/main.css">
<!-- owl.carousel css
============================================ -->
<link rel="stylesheet" href="css1/owl.carousel.css">
<link rel="stylesheet" href="css1/owl.theme.css">
<link rel="stylesheet" href="css1/owl.transitions.css">
<!-- nivo-slider css
============================================ -->
<link rel="stylesheet" href="lib/css/nivo-slider.css">
<link rel="stylesheet" href="lib/css/preview.css">
<!-- style css
============================================ -->
<link rel="stylesheet" href="style.css">
<!-- responsive css
============================================ -->
<link rel="stylesheet" href="css1/responsive.css">
<!-- modernizr js
============================================ -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<?php include_once('includes/header.php'); ?>
<!-- page title area start -->
<div class="page-title-area overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- page title start -->
<div class="page-title">
<h2>Rickshawala's Contact Informations</h2>
</div>
<!-- page title end -->
<!-- page title menu start -->
<div class="page-title-menu">
<ul>
<li><a href="index.php">Home</a> <span> / </span> </li>
<li><a href="rickshawala-info.php">Rickshawala's info</a></li>
</ul>
</div>
<!-- page title menu end -->
</div>
</div>
</div>
</div>
<!-- page title area end -->
<!-- about us area start -->
<div class="about-us-area section-padding2">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- section title start -->
<div class="section-heading">
<h2>Rickshawala's <span> Contact Info</span></h2>
</div>
<!-- section title end -->
<table class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th>S.No</th>
<th>Name</th>
<th>Mobile Number</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<?php
$sql = "SELECT * from rickshawala";
$query = $dbh->prepare($sql);
$query->execute();
$results = $query->fetchAll(PDO::FETCH_OBJ);
$cnt = 1;
if ($query->rowCount() > 0) {
foreach ($results as $row) { ?>
<td><?php echo htmlentities($cnt); ?></td>
<td><?php echo htmlentities($row->Name); ?></td>
<td><?php echo htmlentities($row->Contact); ?></td>
<td><?php echo htmlentities($row->address); ?></td>
</tr>
<?php $cnt = $cnt + 1;
}
} ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- about us area end -->
<!-- quick book area start -->
<?php include_once('includes/footer.php'); ?>
<!-- ============== All JS ================ -->
<!-- jquery js
=========================================== -->
<script src="js/vendor/jquery-1.12.0.min.js"></script>
<!-- bootstrap js
=========================================== -->
<script src="js/bootstrap.min.js"></script>
<!-- meanmenu js
=========================================== -->
<script src="js/jquery.meanmenu.js"></script>
<!-- scrollUp js
=========================================== -->
<script src="js/jquery.scrollUp.min.js"></script>
<!-- wow js
=========================================== -->
<script src="js/wow.min.js"></script>
<!-- owl.carousel js
=========================================== -->
<script src="js/owl.carousel.min.js"></script>
<!-- change-text js
=========================================== -->
<script src="js/change-text.js"></script>
<!-- YTPlayer js
=========================================== -->
<script src="js/jquery.mb.YTPlayer.min.js"></script>
<!-- textillate js
=========================================== -->
<script src="js/jquery.lettering.js"></script>
<script src="js/jquery.textillate.js"></script>
<!-- nivo.slider js
=========================================== -->
<script src="lib/js/jquery.nivo.slider.js"></script>
<script src="lib/home.js"></script>
<!-- plugins js
=========================================== -->
<script src="js/plugins.js"></script>
<!-- main js
=========================================== -->
<script src="js/main.js"></script>
</body>
</html>