<?
//
// This script displays a poll's results using poll_viewResults()
//
if(!isset($pollID))
  $pollID = 1;
require('phpPollConfig.php3');
require('phpPollUI.php3');
?>
<html>
<head>
<title>verybaby 投票のページ</title>
</head>
<body bgcolor="#FFFFFF">
<center>
<img src="../image/subtitle_touhyou.gif">
<p></p>
<h2><? echo $polltitle ?></h2>
<table width="600" border="0" cellpadding="3">
  <tr>
    <td valign="top" width="100%">
<h3>現在の投票結果は以下の通りです。</h4>

<hr>
<? poll_viewResults($pollID); ?>
<hr>
<h3>ここから投票することができます。</h3>
<b><? echo $polltitle; ?></b>
<p></p>
<? 
$encoded=rawurlencode($polltitle);
poll_generateUI($pollID,"view.php3?pollID=$pollID&polltitle=$encoded"); 
?>
<hr>
    </td>
  </tr>
</table>
<p>
<a href="../right.shtml"><img src="../image/bottan_home.jpg" border=0 align="middle" alt="HOME"></a>&nbsp;<a href="list.php3">投票一覧に戻る</a>
</p>
</center>
</body>
</html>
