vote_edit.htm
4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>投票管理</title>
<link href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
<tr>
<td height="28" background="images/tbg.gif" style="padding-left:10px;"><b>投票管理</b>>>增加投票 [<a href="vote_main.php"><u>管理以往投票内容记录</u></a>]</td>
</tr>
<tr>
<td height="200" bgcolor="#FFFFFF" valign="top">
<form name="form1" method="post" action="vote_edit.php">
<input type="hidden" name="dopost" value="saveedit">
<input type="hidden" name="aid" value="<?php echo $aid?>">
<table width="100%" border="0" cellspacing="4" cellpadding="4">
<tr>
<td width="15%" align="center">投票名称:</td>
<td width="85%"> <input name="votename" type="text" id="votename" value="<?php echo $row['votename']?>">
</td>
</tr>
<tr>
<td align="center">投票总人数:</td>
<td><input name="totalcount" type="text" id="totalcount" value="<?php echo $row['totalcount']?>"></td>
</tr>
<tr>
<td align="center">开始时间:</td>
<td><input name="starttime" type="text" id="starttime" value="<?php echo GetDateMk($row['starttime'])?>"></td>
</tr>
<tr>
<td align="center">结束时间:</td>
<td><input name="endtime" type="text" id="endtime" value="<?php echo GetDateMk($row['endtime'])?>"></td>
</tr>
<tr>
<td align="center">是否允许游客投票:</td>
<td> <input name="isallow" type="radio" class="np" value="0" <?php if($row['isallow']==0) echo " checked"; ?>>
是
<input type="radio" name="isallow" class="np" value="1" <?php if($row['isallow']==1) echo " checked"; ?>>
否</td>
</tr>
<tr>
<td align="center">是否允许查看投票:</td>
<td> <input name="view" type="radio" class="np" value="0" <?php if($row['view']==0) echo " checked"; ?>>
是
<input type="radio" name="view" class="np" value="1" <?php if($row['view']==1) echo " checked"; ?>>
否</td>
</tr>
<tr>
<td align="center">投票时间间隔:</td>
<td><input name="spec" type="text" value="<?php echo $row['spec'] ?>" class="spec" >
(N天后可再次投票,0 表示此IP地址只能投一次)</td>
</tr>
<tr>
<td align="center">是否多选:</td>
<td> <input name="ismore" type="radio" class="np" value="0"<?php if($row['ismore']==0) echo " checked";?>>
单选
<input type="radio" name="ismore" class="np" value="1"<?php if($row['ismore']==1) echo " checked";?>>
多选 </td>
</tr>
<tr>
<td align="center">投 票 项:<br/>
(请按相同的形式来增加或修改节点,其中属性:id不能重复) </td>
<td><textarea name="votenote" rows="8" id="votenote" style="width:80%"><?php echo $row['votenote']?></textarea>
</td>
</tr>
<tr>
<td align="center">是否启用:</td>
<td> <input name="isenable" type="radio" class="np" value="0" <?php if($row['isenable']==0) echo " checked"; ?>>
是
<input type="radio" name="isenable" class="np" value="1" <?php if($row['isenable']==1) echo " checked"; ?>>
否</td>
</tr>
<tr>
<td height="47"> </td>
<td><input type="submit" name="Submit" value="保存投票数据"></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>