-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmob_clock.php
More file actions
310 lines (236 loc) · 9.79 KB
/
Copy pathmob_clock.php
File metadata and controls
310 lines (236 loc) · 9.79 KB
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php include("includes/header.php"); ?>
<?php include("includes/connection.php"); ?>
<?php include("includes/new_functions.php"); ?>
<?php
if(isset($_GET['genre']))
{
$sel_genre = $_GET['genre'];
}
else
{
$sel_genre = 'x';
}
?>
<header>
<div class="container"><a href="#" data-activates="nav-mobile" class="button-collapse top-nav waves-effect waves-light circle"><i class="mdi-navigation-menu"></i></a></div>
<ul id="nav-mobile" class="side-nav fixed text-white" style="background-color:;">
<li class="logo" style="background-color:;"><a id="logo-container" href="http://allinism.in/" class="brand-logo" >
<img id="front-page-logo" style="width:100px;height:100px;" class="responsive-img" src="img/allin.png"></a></li>
<li class="bold" style=";"><a href="clock.php?genre=health" class="list-group-item <?php if($sel_genre =='health'){ echo "active" ;} ?>">Health Center</a></li>
<li class="bold"><a href="clock.php?genre=ism" class="list-group-item <?php if($sel_genre =='ism'){ echo "active" ;} ?>">ISM Bodies</a></li>
<li class="bold"><a href="clock.php?genre=sac" class="list-group-item <?php if($sel_genre =='other'){ echo "active" ;} ?>">SAC</a></li>
<br /><br /><br />
<br /><br /><br />
</ul>
</header>
<main><div class="section" id="index-banner">
<div class="container">
<div class="row">
<div class="col s12 m9">
<h6 class="header center-on-small-only right-align"><a style="text-decoration:none;color:white" href="http://allinism.in/">Home</a></h6>
<h1 class="header center-on-small-only">Campus Clock</h1>
<?php
if(!isset($_GET['genre'])){
echo '<h4 class ="light red-text text-lighten-4 center-on-small-only">Baffled by the ever changing and perplexing timings of the Sac, Library, Departments, Health center, Dsw Office, Admin Block (Yawns).
Do not worry we have it all sorted out.</h4>';}
?>
<br />
</div>
</div>
</div>
</div>
<br /><br /><br />
<div class="container">
<!-- Outer row -->
<div class="row">
<div class="section col s12 m9 l10">
<?php
if(!isset($_GET['genre'])){
echo '<div class="row">';
echo '<div class="col s12 m9 l12">';
echo '<div class="card-panel teal">';
echo '<span class="white-text">Please select a category Form the left and GO ALL IN';
echo '</span>';
echo '</div>';
echo '</div>';
echo '</div>';
}
if($sel_genre == 'ism')
{
echo '<ul class="collapsible" data-collapsible="accordion">';
echo '<li>';
echo '<div class="collapsible-header"><i class="mdi-image-filter-drama"></i>';
echo 'DSW';
echo '</div>';
echo '<div class="collapsible-body">';
echo 'Monday to Friday 10:00AM - 12:00AM & 2:00PM - 5:00PM<br />';
echo '</div>';
echo '</li>';
echo '</ul>';
}
if($sel_genre == 'sac')
{
echo '<ul class="collapsible" data-collapsible="accordion">';
echo '<li>';
echo '<div class="collapsible-header"><i class="mdi-image-filter-drama"></i>';
echo 'Gym';
echo '</div>';
echo '<div class="collapsible-body">';
echo '<table class="hoverable" style="font-size:12px;">';
echo '<tr>';
echo '<td>Day</td>';
echo '<td>Girls</td>';
echo '<td>Boys</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Tues-to-Friday</td>';
echo '<td>6:00AM - 7:00 AM <br /> 5:00PM - 6:00PM</td>';
echo '<td>7:00AM - 8:00 AM <br /> 6:00PM - 8:30PM</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Sat-Sunday</td>';
echo '<td>8:00AM - 9:30 AM</td>';
echo '<td>6:00AM - 8:00 AM<br /> 3:00PM - 6:00PM</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Monday</td>';
echo '<td>Closed</td>';
echo '<td>Closed</td>';
echo '</tr>';
echo '</table>';
echo '</div>';
echo '</li>';
echo '<li>';
echo '<div class="collapsible-header"><i class="mdi-image-filter-drama"></i>';
echo 'Madhulika';
echo '</div>';
echo '<div class="collapsible-body">';
echo '<br />Everyday 9:00 AM - 10:30 PM<br />';
echo '</div>';
echo '</li>';
echo '</ul>';
}
if($sel_genre == 'health')
{
echo '<ul class="collapsible" data-collapsible="accordion">';
echo '<li>';
echo '<div class="collapsible-header"><i class="mdi-image-filter-drama"></i>';
echo 'Health Center';
echo '</div>';
echo '<div class="collapsible-body">';
echo '<table class=" hoverable" style="font-size:10px;">';
echo '<thead>';
echo '<tr>';
echo '<td><b>Name</b></td>';
echo '<td><b>Specialization</b></td>';
echo '<td><b>Timing</b></td>';
echo '<td><b>Day</b></td>';
echo '</tr>';
echo '</thead>';
echo '<tbody>';
echo '<tr>';
echo '<td>Dr Praveen Kumar</td>';
echo '<td>General physician</td>';
echo '<td>10:00 AM to 1:30 AM <br />6:00 PM to 8:00 PM</td>';
echo '<td>Mon-to-Fri</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Tanushree Banerjee</td>';
echo '<td>General physician</td>';
echo '<td>10:00 AM to 1:30 AM <br />6:00 PM to 8:00 PM</td>';
echo '<td>Mon-to-Fri</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr J Kumar</td>';
echo '<td>General physician</td>';
echo '<td>10:00 AM to 1:30 AM <br />6:00 PM to 8:00 PM</td>';
echo '<td>Mon-to-Fri</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr Rajnikant Sinha</td>';
echo '<td>Eye Specialist</td>';
echo '<td>7:00 PM to 8:00 PM</td>';
echo '<td>Mon & Tue</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr Faruk Ajam</td>';
echo '<td>Dentist</td>';
echo '<td>6:00 PM to 7:00 PM</td>';
echo '<td>Mon & Thur</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr S.N. Mehta</td>';
echo '<td>ENT Specialist</td>';
echo '<td>7:00 PM to 8:00 PM</td>';
echo '<td>Wed</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr D.P. Bhushan</td>';
echo '<td>Orthopaedic</td>';
echo '<td>7:00 PM to 8:00 PM</td>';
echo '<td>Wed</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr D.P. Badhani</td>';
echo '<td>Surgeon</td>';
echo '<td>7:00 PM to 8:00 PM</td>';
echo '<td>Ist three wed of a month</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr Savita Shukla Das</td>';
echo '<td>Gynaecologist</td>';
echo '<td>7:00 PM to 8:00 PM</td>';
echo '<td>Friday</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr Sanjay Kumar</td>';
echo '<td>Psychiatrist</td>';
echo '<td>6:00 PM to 7:00 PM</td>';
echo '<td>Thursday</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Dr P. Chatterjee / Dr S.N. Mitra</td>';
echo '<td>Homeopathic</td>';
echo '<td>10:00 AM to 1:30 AM<br />6:00 PM to 8:00 PM</td>';
echo '<td>Mon to Fri <br /> Mon, Tue, Thur</td>';
echo '</tr>';
echo '</tbody>';
echo '</table>';
echo '<br /><hr>';
echo '<b style="color:brown">Note:- 24*7 Emergency Service is available at health center</b>';
echo '</div>';
echo '</li>';
echo '</ul>';
}
?>
</div>
<!-- Table of contents -->
</div>
</div>
<br /><br /><br />
<br /><br /><br />
<br /><br /><br />
</main> <footer class="page-footer">
<div class="container" style="opacity:0;background-color:white">
<div class="row" style="opacity:0;background-color:white">
<div class="col l4 s12" style="opacity:0;background-color:#000000">
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
</div>
<div class="col l4 s12">
</div>
<div class="col l4 s12" style="overflow: hidden;">
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2014-2015 ALLinISM, All rights reserved.
<a class="grey-text text-lighten-4 right" href="http://allinism.in/">Go Home</a>
</div>
</div>
</footer>
<?php include("includes/footer.php"); ?>