Help for this page

Select Code to Download


  1. or download this
      eval { $parser->parse };
      if( $@)
        { my $error= $@;
          #cleanup
        }
    
  2. or download this
    my $stored_content='';             # global
    
    sub Start
    ...
        process( $stored_content);     # now it's full
        $stored_content='';            # reset here too
      }