//
// this script displays a list of all available polls
//
require('phpPollConfig.php3');
require('phpPollUI.php3');
?>
eCoustics.com - All Poll Results
include($includedir.'/header.php'); ?>
Home > All Poll Results
|
$allPolls = poll_listPolls();
for ($count = 0; $count < count($allPolls); $count++) {
$url = "list.php3";
$id = $allPolls[$count][0];
$pollTitle = $allPolls[$count][1];
echo("\n");
echo("| $pollTitle | \n");
echo("
| \n");
poll_viewResults($id);
echo(" | \n");
poll_generateUI($id, $url);
echo(" |
\n");
echo("
");
}
?>
include($includedir.'/footer_new_full.htm'); ?>