加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
function.php 1.87 KB
一键复制 编辑 原始数据 按行查看 历史
sjm 提交于 2021-07-04 09:31 . first push
<?php
session_start();
$username=$_SESSION["username"];
class function1{
function ShowVote(){
include "conn.php";
$sql="select * from vote where isselected=1";
$rel=$mysqli->query($sql);
$rsVote=$rel->fetch_array();
if(!$rsVote){
echo "&nbsp;暂时没有添加调查";
}
else{?>
<form name='VoteForm' method='post' action='vote.php' target='_blank'>
<table align="center" width="auto">
<h1 align="center"><?php echo $rsVote["title"];?></h1>
<?php if ($rsVote["votetype"]=="Single"){
for ($i=1;$i<=8;$i++){
if($rsVote["select".$i]==NULL){
break;
}?>
<tr>
<td colspan="2"align="center">
<input type='radio' name='VoteOption' value='" .$i."'><?php echo $rsVote["select".$i] ?>
</td>
</tr>
<?php
}
}else{
for ($i=1;$i<=8;$i++){
if ($rsVote["select".$i]==NULL) {break;}
?><tr><td colspan="2" align="center"><input type='checkbox' name='VoteOption' value='" .$i ."'><?php echo $rsVote["select".$i]?> </td></tr>
<?php }
}?>
<tr><td colspan="2" align="center"><input name='VoteType' type='hidden'value='<?php echo $rsVote["votetype"]?>'></td></tr>
<tr><td colspan="2" align="center"><input name='Action' type='hidden' value='Vote'></td></tr>
<tr><td colspan="2" align="center"><input name='id' type='hidden' value='<?php echo $rsVote["id"]?>'></td></tr>
<tr>
<td align="center"><a href='javascript:VoteForm.submit();'><img src='images/voteSubmit.gif' width='52px' height='18px' border='0'></a></td>
<td><a href='vote.php?Action=Show' target='_blank'><img src='images/voteView.gif' width='52px' height='18px' border='0'></a></td>
</tr>
</table>
</form><?php
}
}
function getuserid($username){
$uid="";
if($username!=""){
$user=$mysqli->query("select id from tb_reader where username='$username'");
$rsuser=$user->fetch_array();
if($rsuser==true){
$uid=$rsuser["id"];
}
}
return $uid;
}
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化