<html>
<head>
  <title>A survey to see if we can do it</title>
</head>
<body>
  <?php
  $now = getdate();
  if ($now['hours'] < 12) {
    echo "Good morning!";
    } else if ($now['hours'] < 18) {
    echo "Good afternoon!";
    } else {
    echo "Good evening!";
    }
  ?>
  <form action="survey2.php" method="get">
    <p>Do you play World of Warcraft?
      <input type="radio" name="play" value="yes">Yes</input>
      <input type="radio" name="play" value="no">No</input>
      <input type="submit"/>
    </p>
  </form>

</body>
</html>
