-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.php
291 lines (269 loc) · 8.3 KB
/
main.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
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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<title>答题系统</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-image: linear-gradient(to top, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
/* background-color: #2184fc; */
/* background-color: lightblue; */
height: 100vh;
}
.container {
background-image: linear-gradient(to top, #d4fc79 0%, #96e6a1 100%);
padding: 20px;
max-width: 500px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 1);
border-radius: 5px;
text-align: center;
/* display: inline; */
position: relative; /* 设置相对定位 */
}
.container-a {
background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
padding: 5px 5px;
max-width: 500px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 1);
border-radius: 5px;
text-align: left;
}
.container-b {
background-image: linear-gradient(to top, #dad4ec 0%, #dad4ec 1%, #f3e7e9 100%);
padding: 5px 5px;
max-width: 500px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 1);
border-radius: 5px;
text-align: left;
}
.container-c {
background-image: linear-gradient(to right, #eea2a2 0%, #bbc1bf 19%, #57c6e1 42%, #b49fda 79%, #7ac5d8 100%);
padding: 20px;
max-width: 500px ;
margin: 0px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 1);
border-radius: 5px;
text-align: center;
/* display: inline; */
position: relative; /* 设置相对定位 */
}
h1 {
color: #333;
margin-top: 0;
}
label {
display: inline-block;
width: 100px;
margin-bottom: 10px;
text-align: left;
}
input[type=text], input[type=password] {
background-image: linear-gradient(to left, #BDBBBE 0%, #9D9EA3 100%), radial-gradient(88% 271% at 0 0, rgba(255, 255, 255, 0.25) 0%, rgba(254, 254, 254, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%), radial-gradient(50% 100% at 0 0, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%); background-blend-mode: normal, lighten, soft-light; padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
input[type=submit] {
background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.error-message {
color: red;
font-size: 14px;
margin-top: 10px;
text-align: left;
}
.logo {
margin-bottom: 20px;
}
.question {
margin-top: 20px;
text-align: left;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.score {
margin-top: 20px;
font-size: 18px;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 100px;
background-color: white;
border: 1px solid black;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>云计算竞赛系统</h1>
<!-- <img class="logo" src="hello.png" alt="Logo"> -->
<?php
session_start();
if (isset($_SESSION['username'])) {
$user = $_SESSION['username'];
} else {
// 用户未登录
}
// 连接数据库
$servername = "127.0.0.1";
$username = "jsxt";
$password = "password";
$dbname = "jsxt";
$conn = mysqli_connect($servername, $username, $password, $dbname);
if (isset($_GET['error'])) {
// 显示连接失败的消息
echo "<div style='color: red'>" . $_GET['error'] . "</div>";
}
// 检查连接
if (!$conn) {
die("连接失败: " . mysqli_connect_error());
}
// 查询 fenshu 表中的 dqid 字段
$result = mysqli_query($conn, "SELECT dqid FROM fenshu WHERE user = '$user'");
// 检查查询结果中是否有行数
if (mysqli_num_rows($result) > 0) {
// 如果有行数,则获取第一行的 dqid 值
$row = mysqli_fetch_assoc($result);
$dqid = $row["dqid"];
} else {
// 如果没有行数,则将 dqid 赋值为 1
$dqid = 1;
}
// echo $dqid;
//查询requests表中题目id最大多少
$sql = "SELECT MAX(id) as max_id FROM requests";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// 输出最大值并将其作为 $zdid 的值
$row = $result->fetch_assoc();
$zdid = $row["max_id"];
// echo $zdid;
} else {
// 如果查询结果为空,将 $zdid 的值设为 0
$zdid = 0;
}
// echo $zdid;
// 现在 $dqid 变量中包含了要么是查询结果中的 dqid 值,要么是默认值 1
if ($dqid > $zdid){
$query = "SELECT fenshu FROM fenshu WHERE user = '$user'";
// 执行查询
$result = mysqli_query($conn, $query);
$row = mysqli_fetch_assoc($result);
$fenshu = $row['fenshu'];
echo "<div class='question'>";
echo "<h3>$user 答题结束 $fenshu 分</h3>";
// echo $fenshu;
echo "</div>";
die();
}
// 查询题目
$sql = "SELECT id, requests, fenshu FROM requests WHERE id = '$dqid'";
$result = mysqli_query($conn, $sql);
// 渲染题目
if (mysqli_num_rows($result) > 0) {
while($row = mysqli_fetch_assoc($result)) {
$current_question_id = $row['id'];
$a_fenshu = $row['fenshu'];
echo "<div class='container-a'>";
echo "<h3>题目:" . $row['requests'] . "</h3>";
echo "<p>分数:" . $row['fenshu'] . "</p>";
echo "</div>";
}
// echo "<input type='hidden' name='requests_id' value='" . $current_question_id . "'>";
} else {
// echo "0 结果";
}
//查询当前分数
// echo $user;
$query = "SELECT fenshu FROM fenshu WHERE user = '$user'";
// 执行查询
$result = mysqli_query($conn, $query);
// 检查查询是否成功
if ($result) {
// 获取查询结果
$row = mysqli_fetch_assoc($result);
$fenshu = $row['fenshu'];
// 输出当前用户的分数
// echo "当前用户 $user 的分数是 $fenshu";
} else {
// echo "查询失败:" . mysqli_error($connection);
}
// $user=$_POST['username'];
// 关闭连接
//分数实时显示
$sql = "SELECT user, fenshu FROM fenshu ORDER BY fenshu DESC LIMIT 10";
$result = $conn->query($sql);
$scores = array();
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$scores[] = $row;
}
}
mysqli_close($conn);
?>
<link rel="stylesheet" href="style.css">
<form class="container" method="post" action="submit.php">
<label for="ip">IP 地址:</label>
<input type="text" id="ip" name="ip" required><br>
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required><br>
<input type="hidden" id="requests_id" name="requests_id" value="<?php echo $current_question_id; ?>">
<input type="hidden" id="fenshu" name="fenshu" value="<?php echo $a_fenshu; ?>">
<input type="hidden" id="user" name="user" value="<?php echo $user; ?>">
<input type="submit" value="提交" id="submitBtn">
<script src="dengdai.js"></script>
</form>
<div id="score" class="container-b">得分:<?php echo $fenshu;?></div>
</div>
<div class="container-c">
<table align="center">
<tr>
<th width="42%" >排名</th>
<th width="42%">姓名</th>
<th width="42%">分数</th>
</tr>
<?php
// 使用循环结构输出分数排行榜
// 获得要排序的列
$column = array_column($scores, 'fenshu');
// 按照得分从高到低排序
array_multisort($column, SORT_DESC, $scores);
$rank = 1;
foreach ($scores as $score) {
echo "<tr>";
echo "<td>".$rank."</td>";
echo "<td>".$score['user']."</td>";
echo "<td>".$score['fenshu']."</td>";
echo "</tr>";
$rank++;
}
?>
</table>
</div>
</body>
</html>