home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / bale / addevent.php < prev    next >
Text File  |  2002-09-24  |  237b  |  24 lines

  1. <html>
  2. <head>
  3. <title>Results Page</title>
  4. </head>
  5. <body>
  6.  
  7. <?php
  8.  
  9. if ($eventtype == "recurring")
  10. {
  11.     echo "This is a recurring event!";
  12. }
  13. elseif ($eventtype == "single")
  14. {
  15.     echo "This is a one-time event!";
  16. }
  17.  
  18. ?>
  19.  
  20.  
  21. </form>
  22. </body>
  23. </html>
  24.