加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
do_editexam.php 705 Bytes
一键复制 编辑 原始数据 按行查看 历史
rexskz 提交于 2014-08-11 21:48 . 修正了页面包含的逻辑问题
<?php
if (!defined("IN_SCRS")) exit();
if (!isset($_GET['id'])) {
relocate("javascript:window.history.go(-1)");
die();
}
$item = get_topic_items($_GET['id']);
foreach ($item as $e) {
$user->delete_item($e['item_id']);
}
$exam = array("topicname" => $_POST['title'], "comment" => $_POST['desc']);
$user->change_topic($_GET['id'], $exam);
$length = isset($_POST['point_title']) ? count($_POST['point_title']) : 0;
for ($i = 0; $i < $length; $i++) {
$item = array(
"topic_id" => $_GET['id'],
"itemname" => $_POST['point_title'][$i],
"maxscore" => $_POST['point_score'][$i],
"comment" => $_POST['point_desc'][$i]
);
$user->add_item($item);
}
relocate("?action=manexam");
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化