http://www.perlmonks.org?node_id=935426


in reply to Re^2: HTML Table to MYSQL DB
in thread HTML Table to MYSQL DB

Something like this:
use warnings; use strict; use HTML::TableExtract; use LWP::Simple; my $T = HTML::TableExtract->new(); my $table = $T->parse(get( 'http://.......')) ->first_table_found; my @rows = $table->rows; for my $row (@rows) { # Process rows... }