1 Star 3 Fork 2

mojie126/HDCN-PT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
polloverview.php 4.38 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
require "include/bittorrent.php";
dbconn();
require_once(get_langfile_path());
loggedinorreturn();
if (get_user_class() < $pollmanage_class)
permissiondenied();
$pollid = 0 + $_GET['id'];
if ($pollid) {
$res = sql_query("SELECT * FROM polls WHERE id = " . sqlesc($pollid) . " LIMIT 1") or sqlerr();
if (mysql_num_rows($res) == 0)
stderr($lang_polloverview['std_error'], $lang_polloverview['text_no_poll_id']);
stdhead($lang_polloverview['head_poll_overview']);
print("<h1 align=\"center\">" . $lang_polloverview['text_polls_overview'] . "</h1>\n");
print("<table width=737 border=1 cellspacing=0 cellpadding=5><tr>\n" .
"<td class=colhead align=center><nobr>" . $lang_polloverview['col_id'] . "</nobr></td><td class=colhead><nobr>" . $lang_polloverview['col_added'] . "</nobr></td><td class=colhead><nobr>" . $lang_polloverview['col_question'] . "</nobr></td></tr>\n");
while ($poll = mysql_fetch_assoc($res)) {
$o = array($poll["option0"], $poll["option1"], $poll["option2"], $poll["option3"], $poll["option4"], $poll["option5"], $poll["option6"], $poll["option7"], $poll["option8"], $poll["option9"], $poll["option10"], $poll["option11"], $poll["option12"], $poll["option13"], $poll["option14"], $poll["option15"], $poll["option16"], $poll["option17"], $poll["option18"], $poll["option19"]);
$added = gettime($poll['added']);
print("<tr><td align=center><a href=\"polloverview.php?id=" . $poll['id'] . "\">" . $poll['id'] . "</a></td><td>" . $added . "</td><td><a href=\"polloverview.php?id=" . $poll['id'] . "\">" . $poll['question'] . "</a></td></tr>\n");
}
print("</table>\n");
print("<h1 align=\"center\">" . $lang_polloverview['text_poll_question'] . "</h1>\n");
print("<table width=737 border=1 cellspacing=0 cellpadding=5><tr><td class=colhead>" . $lang_polloverview['col_option_no'] . "</td><td class=colhead>" . $lang_polloverview['col_options'] . "</td><td class=colhead>" . $lang_polloverview['col_options_num'] . "</td></tr>\n");
foreach ($o as $key => $value) {
if ($value != "") {
$res = mysql_num_rows(sql_query("SELECT id FROM pollanswers WHERE pollid = $pollid AND selection = $key"));
print("<tr><td>" . $key . "</td><td>" . $value . "</td><td>" . $res . "</td></tr>\n");
}
}
print("</table>\n");
$count = get_row_count("pollanswers", "WHERE pollid = " . sqlesc($pollid) . " AND selection < 20");
print("<h1 align=\"center\">" . $lang_polloverview['text_polls_user_overview'] . "</h1>\n");
if ($count == 0) {
print("<p align=\"center\">" . $lang_polloverview['text_no_users_voted'] . "</p>");
} else {
$perpage = 100;
list($pagertop, $pagerbottom, $limit) = pager($perpage, $count, "?id=" . $pollid . "&");
$res2 = sql_query("SELECT pollanswers.*, users.username FROM pollanswers LEFT JOIN users ON pollanswers.userid = users.id WHERE pollid = " . sqlesc($pollid) . " AND selection < 20 ORDER BY username ASC " . $limit) or sqlerr();
print($pagertop);
print("<table width=737 border=1 cellspacing=0 cellpadding=5>");
print("<tr><td class=colhead align=center><nobr>" . $lang_polloverview['col_username'] . "</nobr></td><td class=colhead align=center><nobr>" . $lang_polloverview['col_selection'] . "<nobr></td></tr>\n");
while ($useras = mysql_fetch_assoc($res2)) {
$username = get_username($useras['userid']);
print("<tr><td>" . $username . "</td><td>" . $o[$useras['selection']] . "</td></tr>\n");
}
print("</table>\n");
print($pagerbottom);
}
stdfoot();
} else {
$res = sql_query("SELECT id, added, question FROM polls ORDER BY id DESC") or sqlerr();
if (mysql_num_rows($res) == 0)
stderr($lang_polloverview['std_error'], $lang_polloverview['text_no_users_voted']);
stdhead($lang_polloverview['head_poll_overview']);
print("<h1 align=\"center\">" . $lang_polloverview['text_polls_overview'] . "</h1>\n");
print("<table width=737 border=1 cellspacing=0 cellpadding=5><tr>\n" .
"<td class=colhead align=center><nobr>" . $lang_polloverview['col_id'] . "</nobr></td><td class=colhead>" . $lang_polloverview['col_added'] . "</td><td class=colhead><nobr>" . $lang_polloverview['col_question'] . "</nobr></td></tr>\n");
while ($poll = mysql_fetch_assoc($res)) {
$added = gettime($poll['added']);
print("<tr><td align=center><a href=\"polloverview.php?id=" . $poll['id'] . "\">" . $poll['id'] . "</a></td><td>" . $added . "</td><td><a href=\"polloverview.php?id=" . $poll['id'] . "\">" . $poll['question'] . "</a></td></tr>\n");
}
print("</table>\n");
stdfoot();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mojie126/HDCN-PT.git
git@gitee.com:mojie126/HDCN-PT.git
mojie126
HDCN-PT
HDCN-PT
master

搜索帮助