Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $query = new CGI;
    ...
    sub menu {
       print $query->redirect('http://www.somedomain.org/index.html');
    }
    
  2. or download this
    print $query->header(-cookie => $newcookie);
    print $query->redirect('http://www.somedomain.org/index.html');
    
  3. or download this
    print "Set-Cookie: $cookie\n";
    print "Location: $path\n\n";