Help for this page

Select Code to Download


  1. or download this
    use CGI ':standard';
    
    # do processing
    
    print redirect('http://example.com/');
    
  2. or download this
    my $pid = fork;
    exit if $pid;
    die "fork: $!" unless defined $pid;  # or maybe just warn
    
    # continue processing