Help for this page

Select Code to Download


  1. or download this
    <!--#if expr="$HTTP_COOKIE = /foo\=bar/"-->
        <p>Cookie foo is set to bar</p>
    <!--#endif -->
    
  2. or download this
    <html>
    <body>
    ...
    <!--#include virtual="/cgi-bin/bar.pl" -->
    </body>
    </html>
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
      my $val = $cgi->cookie( $c );
      print $cgi->blockquote( $cgi->em( $c ), ' - ', $val );
    }