<?php /**/ ?><?php
 
include("./inc.php");
 
head("Poll""This page houses my attempt to create an online poll.""Poll, online poll, vote."NULL);
?>

  <?php
   
include "poll.php";
   if (isset(
$_GET['results'])) {
    
poll::results();
   } else {
    
poll::output();
   }
  
?>

<?php foot(); ?>