Help for this page

Select Code to Download


  1. or download this
    print
    header()
    
  2. or download this
    $|++;                            #sets $| for STDOUT
    $old_handle = select( STDERR );  #change to STDERR
    $|++;                            #sets $| for STDERR
    select( $old_handle );           #change back to STDOUT
    
  3. or download this
        use CGI qw(-debug)