Help for this page

Select Code to Download


  1. or download this
     
    
    print "Location: http://blah.com\n\n";
    
  2. or download this
     
    use CGI qw(:standard); 
    my $query = CGI -> new(); 
    
    $query -> redirect(-uri => 'http://blah.com');
    
  3. or download this
     
    use CGI qw(:standard); my $query = CGI -> new(); $query -> redirect(-u
    +ri => 'http://blah.com', nph => 1);