Help for this page

Select Code to Download


  1. or download this
    print header;
    while ( <FILE> ) {
        # ... 
    }
    
  2. or download this
    while ( <FILE> ) { 
        # ...
      print header unless $already_printed_header++;
        # ...
    }
    
  3. or download this
    use CGI qw/ -unique_headers /;
    
    while ( <FILE> ) { 
    ...
      print header;
        # ...
    }