home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Pavilions / BrainOpera / cgi-bin / minsky-game.cgi < prev    next >
Text File  |  2017-09-21  |  339b  |  19 lines

  1. #!/usr/local/bin/perl
  2.  
  3. # Script written by Dan and Josh to redirect people to proper 
  4. # minsky game number
  5. do 'cgi-hacks.pl';
  6. do "redirect.pl";
  7.  
  8. require 'flush.pl';
  9.  
  10. &find_form_args("number");
  11.  
  12. sub html_header { 
  13.     print "Content-type: text/html\n\n";
  14.     &flush(STDOUT);
  15.     }
  16.  
  17. &redirect("../online/net-music/minsky-text/game$number.html");
  18.  
  19.