1 Star 3 Fork 2

mojie126/HDCN-PT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bet_active.php 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
mojie126 提交于 2015-06-16 21:07 . 内容可能含有违规信息
<?php
require "include/bittorrent.php";
dbconn(false);
loggedinorreturn();
if ($CURUSER < UC_MODERATOR && $CURUSER['id'] != $betsadmin)
stderr("错误", "权限不足");
$id = isset($_GET['id']) && is_valid_id($_GET['id']) ? $_GET['id'] : 0;
$res = sql_query("SELECT active FROM betgames WHERE id =" . sqlesc($id) . "") or sqlerr(__FILE__, __LINE__);
$res = mysql_fetch_assoc($res);
if ($res['active'] == 0)
$status = 1;
else
$status = 0;
if (isset($res['finished']) == 1)
$status = 0;
sql_query("UPDATE betgames SET active =" . sqlesc($status) . " WHERE id =" . sqlesc($id) . "") or sqlerr(__FILE__, __LINE__);
header("location: bet_admin.php");
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mojie126/HDCN-PT.git
git@gitee.com:mojie126/HDCN-PT.git
mojie126
HDCN-PT
HDCN-PT
master

搜索帮助