加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
manexam.php 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
rexskz 提交于 2014-08-11 21:48 . 修正了页面包含的逻辑问题
<?php
if (!defined("IN_SCRS")) exit();
?>
<script src="js/conf.js"></script>
<div id="content">
<input class="button back" type="button" value="返回" onclick="window.location='?'" />
<input class="button" type="button" value="添加新题目" onclick="window.location='?action=addexam'" />
<h3>赛题列表</h3>
<form action="?action=delexam" method="post">
<table>
<tr><!--<th>#</th>--><th style="width:55px;min-width:55px">操作</th><th>题目</th><th>描述</th></tr>
<?php
$exam_list = get_all_topics();
foreach ($exam_list as $e) {
echo "<tr>";
//echo "<td><input type='checkbox' name='chk[]' value='" . $e['topic_id'] . "' /></td>";
echo "<td class='click warning' onclick=\"conf('?action=do_delexam&id=" . $e['topic_id'] . "','确定要删除这条记录吗?')\">删除</td>";
echo "<td class='click' onclick=\"window.location.href='?action=editexam&id=" . $e['topic_id'] . "'\">" . $e['topicname'] . "</td>";
echo "<td><span class='ell'>" . $e['comment'] . "</span></td>";
echo "</tr>";
}
?>
</table>
<!--<input class="button delete" type="submit" value="批量删除" />-->
</form>
</div>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化