代码拉取完成,页面将自动刷新
<?php
require "include/bittorrent.php";
dbconn();
loggedinorreturn();
require_once(get_langfile_path());
if (get_user_class() < UC_SYSOP)
stderr("错误", "权限不足");
$action = isset($_POST['action']) ? htmlspecialchars($_POST['action']) : (isset($_GET['action']) ? htmlspecialchars($_GET['action']) : 'showlist');
if ($action == 'showlist') {
stdhead();
print("<table border=1 cellspacing=0 cellpadding=5 width=750px>\n");
$list = mysql_fetch_array(sql_query("SELECT * FROM allowedemails"));
?>
<form method=post action=allowedemails.php>
<input type=hidden name=action value=savelist>
<tr><td><?php echo $lang_allowedemails['text_help1'] ?><br /><?php echo $lang_allowedemails['text_help2'] ?><br /><?php echo $lang_allowedemails['text_help3'] ?></td>
<td><textarea name="value" rows="5" cols="40"><?php echo $list['value'] ?></textarea>
<input type=submit value="<?php echo $lang_allowedemails['submit_save'] ?>"></form></td>
</tr></table>
<?php
stdfoot();
} elseif ($action == 'savelist') {
stdhead();
$value = sqlesc(trim(htmlspecialchars($_POST['value'])));
$res = sql_query("SELECT * FROM allowedemails");
if (mysql_num_rows($res) <= 0) {
sql_query("INSERT INTO allowedemails (value) VALUE ($value)");
} else {
sql_query("UPDATE allowedemails SET value = $value");
}
echo "<script>alert('成功');location.href = 'allowedemails.php';</script>";
stdfoot();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。