Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wT
    
    ...
    # resource limits
    $CGI::DISABLE_UPLOADS = 1;  # no uploads
    $CGI::POST_MAX = 1024 * 10;  # max 10K posts
    
  2. or download this
    sub create_order_file {
            
    ...
        close ORDERFILE or warn "Something fishy with closing the order: $
    +!\n";
        
    }