代码拉取完成,页面将自动刷新
<?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 " 暂时没有添加调查";
}
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;
}
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。