vote.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title><?=$infor[title]?> 投票</title>
  11. <meta name="keywords" content="<?=$infor[title]?> 投票" />
  12. <meta name="description" content="<?=$infor[title]?> 投票" />
  13. <link href="../../data/images/qcss.css" rel="stylesheet" type="text/css">
  14. </head>
  15. <body>
  16. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  17. <tr class="header">
  18. <td height="25">标题:<?=$r[title]?>&nbsp;(<?=$voteclass?>)</td>
  19. </tr>
  20. <tr>
  21. <td bgcolor="#FFFFFF">
  22. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  23. <?php
  24. //取得行
  25. $r_r=explode($r_exp,$r[votetext]);
  26. $count=count($r_r);
  27. for($i=0;$i<$count;$i++)
  28. {
  29. $f_r=explode($f_exp,$r_r[$i]);
  30. if($r['votenum'])
  31. {
  32. $width=number_format(($f_r[1]/$r['votenum'])*100,2);
  33. }
  34. else
  35. {
  36. $width=0;
  37. }
  38. ?>
  39. <tr height=24>
  40. <td width="48%">
  41. <img src="../../data/images/msgnav.gif" width="5" height="5">&nbsp;
  42. <?=$f_r[0]?>
  43. </td>
  44. <td width="10%">
  45. <div align="center"><?=$f_r[1]?>票</div>
  46. </td>
  47. <td width="42%">
  48. <img src="../../data/images/showvote.gif" width="<?=$width?>" height="6" border=0>
  49. <?=$width?>%
  50. </td>
  51. </tr>
  52. <?php
  53. }
  54. ?>
  55. </table></td>
  56. </tr>
  57. <tr>
  58. <td><table width="100%" border="0" align="right" cellpadding="3" cellspacing="1">
  59. <tr>
  60. <td>&nbsp;共&nbsp;<b><?=$r['votenum']?></b>&nbsp;票</td>
  61. </tr>
  62. </table></td>
  63. </tr>
  64. </table>
  65. <br>
  66. <br>
  67. <br>
  68. <center><input type=button name=button value=关闭 onclick="self.window.close();"></center>
  69. </body>
  70. </html>