Help for this page

Select Code to Download


  1. or download this
    #!c:/perl/bin/perl
    print "Content-type: text/html\n\n"; 
    print "<html><body><img src='test.cgi?asdf'></body></html>";
    
  2. or download this
    #!c:/perl/bin/perl
    
    print "Content-type: image/gif\n\n";
    ...
    open(IMG, "packplan.gif");
    print <IMG>;
    close(IMG);