Help for this page

Select Code to Download


  1. or download this
    while (<$HTML>)
    
  2. or download this
    open FILE, "<$HTML" or die "Oops opening $HTML, Perl says $!\n";
    while (FILE) {
    ...
    }
    
    close FILE;
    
  3. or download this
    $path = "path/to/my/files";
    $HTML =$q->param('file');
    
    open FILE "<$path/$HTML" ....