-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
360 lines (331 loc) · 13.5 KB
/
index.php
File metadata and controls
360 lines (331 loc) · 13.5 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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php
session_start() ;
$db_host = 'localhost' ;
$db_database = 'pd course' ;
$db_username = 'root' ;
$connection = mysql_connect($db_host, $db_username, 'pdogsserver');
if (!$connection)
die ("connection failed".mysql_error()) ;
mysql_query("SET NAMES 'utf8'");
$selection = mysql_select_db($db_database) ;
if (!$selection)
die ("selection failed".mysql_error()) ;
date_default_timezone_set('Asia/Taipei');
$datetime = date ("Y-m-d H:i:s");
//使用者尚未登入 顯示登入頁面
if (!isset($_SESSION['account'])){
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programming Design Online Grading System Ver 2.0</title>
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/sticky-footer.css" media="screen"/>
<script src="js/modernizr.custom.63321.js"></script>
<!--[if lte IE 7]><style>.main{display:none;} .support-note .note-ie{display:block;}</style><![endif]-->
</head>
<body>
<div id="wrap">
<div class="container">
<header>
<h1><strong>PDOGS</strong> Programming Design Online Grading System Ver 2.0</h1>
<h2>First time visit? Please <span class="signup">Sign Up</span> with your Student ID or <span class="login">Login</span></h2>
<?php if (isset ($_GET['fail'])) echo 'Login fail !<br>'; ?>
<?php if (isset ($_GET['empty'])) echo 'Enter your account or pw !<br>'; ?>
<?php if (isset ($_GET['same'])) echo 'Confirm the password !<br>'; ?>
<?php if (isset ($_GET['err'])) echo 'Account already exist !<br>'; ?>
<?php if (isset ($_GET['sucess'])) echo 'Register success !<br>'; ?>
<div class="support-note">
<span class="note-ie">Sorry, only modern browsers.</span>
</div>
</header>
<div class="container">
<iframe class ='main' src="http://free.timeanddate.com/clock/i3i2qw9c/n241/tltw/fn6/tct/pct/tt0/tm1/th1"
frameborder="0" width="246" height="21" allowTransparency="true">
</iframe>
<section class="main">
<form class="form-1" action="login.php" method = "POST">
<p class="field">
<input type="text" name="account" placeholder="Your Student ID ex.b01705001">
<i class="icon-user icon-large"></i>
</p>
<p class="field">
<input type="password" name="password" placeholder="Password">
<i class="icon-lock icon-large"></i>
</p>
<p class="submit">
<button type="submit" name="submit"><i class="icon-arrow-right icon-large"></i></button>
</p>
</form>
</section>
</div>
<div class="container">
<img id="dog_img" src="images/dogs3.jpg" />
</div>
</div>
</div>
<div id="footer">
<div class="foot-container">
<p class="muted credit">© Copyright NTUIM 2013 Spring Programming Design Course | All Rights Reserved.</p>
</div>
</div>
<!--<script src="http://code.jquery.com/jquery.js"></script>-->
<script src="js/jquery.js"></script>
<script src="js/signup.js"></script>
</body>
</html>
<?php
}else{
$acc = mysql_real_escape_string($_SESSION['account']);
$query_t = "SELECT type FROM student WHERE account = '".$acc."'";
$q_type = mysql_query($query_t);
$type = mysql_fetch_row($q_type);
if( $type[0] == 1 or $type[0] == 2) { //使用者登入成功 顯示PDOGS主頁面
//echo 'have session<br>';
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Programming Design Online Grading System</title>
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="css/sticky-footer.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-fileupload.css" rel="stylesheet" media="screen">
</head>
<body>
<div id="wrap">
<div class="container">
<div class="page-header">
<h2>Programming Design Online Grading System</h2>
</div>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" >PDOGS</a>
<ul class="nav">
<!--
<li id="home-btn" class="active"><a>Home</a></li>
-->
<li id="problem-btn"><a>Problem Set</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Submit Homework<b class="caret"></b></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<?php
$pd_count = 0;
$query_pd = 'SELECT p_id, deadline FROM pd_hw ';
$pd = mysql_query($query_pd);
$lab_count = 0;
$query_lab = 'SELECT lab_id, deadline FROM lab_hw';
$lab = mysql_query($query_lab);
while ($fetch_pd = mysql_fetch_row($pd)){
if ( $fetch_pd[1] > $datetime ){
?><li class="hw-btn" role = "presentation" name="<?php echo $fetch_pd[0]; ?>">
<a role="menuitem" tabindex="-1" ><?php echo $fetch_pd[0]; ?></a></li> <?php
$pd_count++;
}
}
while ($fetch_lab = mysql_fetch_row($lab)){
if ( $lab_count == 0){
echo '<li class="divider" role = "presentation">';
}
if ( $fetch_lab[1] > $datetime ){
?><li class="lab-btn" role = "presentation" name="<?php echo $fetch_lab[0]; ?>">
<a role="menuitem" tabindex="-1" ><?php echo $fetch_lab[0]; ?></a></li><?php
$lab_count++;
}
}
if ( $pd_count == 0 and $lab_count == 0 ){
?><li role = "presentation"><a role="menuitem" tabindex="-1" >No problem available</a></li><?php
}
?>
</ul>
</li>
<!--
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Submit Lab HW<b class="caret"></b></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<?php
$lab_count = 0;
$query_lab = 'SELECT lab_id, deadline FROM lab_hw';
$lab = mysql_query($query_lab);
while ($fetch_lab = mysql_fetch_row($lab)){
if ( $fetch_lab[1] > $datetime ){
?><li class="lab-btn" role = "presentation" name="<?php echo $fetch_lab[0]; ?>">
<a role="menuitem" tabindex="-1" ><?php echo $fetch_lab[0]; ?></a></li><?php
$lab_count++;
}
}
if ( $lab_count == 0 ){
?><li role = "presentation"><a role="menuitem" tabindex="-1" >No problem available</a></li><?php
}
?>
</ul>
</li>
-->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Project<b class="caret"></b></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<?php
$query_project = 'SELECT deadline FROM project WHERE onjudge = 1';
$project = mysql_query($query_project);
$fetch_project = mysql_fetch_row($project);
if ( $fetch_project[0] > $datetime ){?>
<li class="project-btn" role = "presentation" name="Submit">
<a role="menuitem" tabindex="-1" >Submit</a>
</li><?php
}
?>
<li class="project-btn" role = "presentation" name="Ranking">
<a role="menuitem" tabindex="-1" >Ranking</a>
</li>
</ul>
</li>
<li id="record-btn"><a>Records</a></li>
<li id="score-btn"><a>Scores</a></li>
</ul>
<ul class="nav pull-right">
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Hi, <?php echo $_SESSION['account'];?><b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="profile.php">Past Problems</a></li>
<li><a href="#">Change Password</a></li>
<li class="divider"></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="load" >
<span class="spin"><i class="icon-spinner icon-spin icon-2x pull-left"></i>Loading... </span>
</div>
<!-- 使用ajax刷新 將所有各功能頁面更新於此div區塊 -->
<div id="main-content">
</div>
</div>
</div>
<div id="footer">
<div class="container">
<p class="muted credit">© Copyright NTUIM 2013 Spring Programming Design Course | All Rights Reserved.</p>
</div>
</div>
<div id="footer2">
</div>
</body>
<!--<script src="http://code.jquery.com/jquery.js"></script>-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-fileupload.min.js"></script>
<script src="js/jquery.form.js"></script>
<script src="js/nav.js"></script>
<script src="js/upload.js"></script>
</html>
<?php
} else if ($type[0] == 0 ) {
//使用者登入成功 顯示PDOGS主頁面
//進入助教頁面
//echo 'have session<br>';
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Programming Design Online Grading System</title>
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="css/sticky-footer.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-fileupload.css" rel="stylesheet" media="screen">
</head>
<body>
<div id="wrap">
<div class="container">
<div class="page-header">
<h2>Programming Design Online Grading System</h2>
</div>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" >PDOGS</a>
<ul class="nav">
<!--
<li id="home-btn" class="active"><a>Home</a></li>
-->
<li id="users-btn"><a>Users</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Create Problem<b class="caret"></b></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<?php
$query_pd = 'SELECT p_id FROM pd_hw ORDER BY p_id';
$pd = mysql_query($query_pd);
$max = 0 ;
while ($fetch_pd = mysql_fetch_row($pd)){
$max ++ ;
}
$append = substr('PD000', 0, -strlen($max+1));
$query_lab = 'SELECT lab_id FROM lab_hw ORDER BY lab_id';
$lab = mysql_query($query_lab);
$max2 = 0 ;
while ($fetch_lab = mysql_fetch_row($lab)){
$max2 ++ ;
}
$append2 = substr('LAB000', 0, -strlen($max2+1));
?>
<li class="createproblem-btn" role = "presentation" name="<?php echo $append.($max +1); ?>">
<a role="menuitem" tabindex="-1" ><?php echo $append.($max +1); ?></a>
</li>
<li class="createproblem-btn" role = "presentation" name="<?php echo $append2.($max2 +1); ?>">
<a role="menuitem" tabindex="-1" ><?php echo $append2.($max2 +1); ?></a>
</li>
</ul>
</li>
<li id="problemlist-btn"><a>Problem List</a></li>
<li id="users-btn"><a>Upload Records</a></li>
<li id="users-btn"><a>All Scores</a></li>
</ul>
<ul class="nav pull-right">
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Hi, <?php echo $_SESSION['account'];?><b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Change Password</a></li>
<li class="divider"></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="load" >
<span class="spin"><i class="icon-spinner icon-spin icon-2x pull-left"></i>Loading... </span>
</div>
<!-- 使用ajax刷新 將所有各功能頁面更新於此div區塊 -->
<div id="main-content">
</div>
</div>
</div>
<div id="footer">
<div class="container">
<p class="muted credit">© Copyright NTUIM 2013 Spring Programming Design Course | All Rights Reserved.</p>
</div>
</div>
<div id="footer2">
</div>
</body>
<!--<script src="http://code.jquery.com/jquery.js"></script>-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-fileupload.min.js"></script>
<script src="js/jquery.form.js"></script>
<script src="js/nav.js"></script>
<script src="js/upload.js"></script>
</html>
<?php
}
}
?>