cgi-dev

Repository that serves as my CGI "scratchpad" to try things out.
git clone git://git.samirparikh.com/cgi-dev
Log | Files | Refs | README

hello (402B) - raw


      1 #!/usr/bin/perl -wT
      2 
      3 print <<END_OF_HTML;
      4 Content-type: text/html
      5 
      6 <HTML>
      7 <HEAD>
      8     <TITLE>Welcome to this Site!</TITLE>
      9 </HEAD>
     10 <BODY>
     11 <H1>About this Site</H1>
     12 <HR>
     13 <p>This is a site where I am trying to learn about CGI programming using Perl.</p>
     14 <p>You can find more information about this server by visiting my <a href="server_info.cgi">About this Server</a> page.</p>
     15 </BODY>
     16 </HTML>
     17 END_OF_HTML