Help for this page

Select Code to Download


  1. or download this
    # get the data from the web.  Typically this is:
    # http://www.sailwx.info/shiptrack/cruiseships.phtml
    ...
       }
    $te->parse($input);
    
  2. or download this
    $te = new HTML::TableExtract ( headers => [qw(Ship position)] );
    
    $te = new HTML::TableExtract(headers=>\@headers);
    
  3. or download this
    $te = HTML::TableExtract->new( headers => \@headers);