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