-
Notifications
You must be signed in to change notification settings - Fork 1
/
About.php
83 lines (70 loc) · 3.02 KB
/
About.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
<!DOCTYPE html>
<html lang="zh-cn">
<?php require_once('Php/HTML_Head.php') ?>
<body>
<?php require_once('Php/Page_Header.php') ?>
<div class="animated fadeInDown">
<center>
<?php
echo '<h1>' . $WebName . '</h1>';
?>
<h2>一个运行在Windows平台的源程序在线判题系统</h2>
<br>
<a>前端界面(HTML, CSS)参考 qdacm.com</a><br />
<a>评测机(C++)由 Setiuo 编写</a><br>
<a>服务端(PHP)由 Setiuo 编写</a><br>
<a>Web服务器使用 Nginx</a><br>
<a>前端框架使用 Bootstrap</a><br>
<a>数学公式使用 MathJax</a><br>
<a>代码编辑框使用 CodeMirror</a><br>
<a>富文本编辑框使用 CKEditor 4</a><br><br>
此评测平台仅供学习<br /><br />
如果您有任何问题,可以联系我:<br />
QQ:751255159<br />
E-mail:[email protected]
</center>
<div>
<div class="container">
<h2>当前状态</h2>
<div class="panel panel-default">
<table class="table table-striped table-hover">
<thead>
<tr>
<th>评测机</th>
<th>运行状态</th>
<th>累计评测</th>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT * FROM `oj_judger`";
$result = oj_mysql_query($sql);
while ($row = oj_mysql_fetch_array($result)) {
echo " <tr>";
echo "<td>";
echo $row['name'];
echo "</td>";
echo "<td>";
echo $row['status'] == 1 ? '<span class="label label-success">运行中</span>' : '<span class="label label-danger">已关闭</span>';
echo "</td>";
echo "<td>";
echo $row['run_count'] . ' 次';
echo "</td>";
echo " </tr>";
}
?>
</tbody>
</table>
</div>
如果您有什么意见或可反馈的问题,可以在这里提交
<textarea data-ctrlenter="#post_submit" name="content" placeholder="这里填具体描述" style="margin-top:8px;height:80px" class="form-control"></textarea>
<button id="post_submit" style="margin-top:10px;" class="btn btn-default">提交</button>
</div>
</div>
</div>
<?php
$PageActive = '';
require_once('Php/Page_Footer.php');
?>
</body>
</html>