Your script has many errors in it, it looks like you copy/pasted several things together. Please run your script before posting so we can concentrate on the problem part.
That being said, the following works:
use strict;
use LWP::Simple;
use HTML::TableExtract;
my $page = get("http://www.dhl-usa.com/TransitTimes/USTTimeRslts.asp?n
+av=TransitTimes&oz=53213&oc=1&oh=ORD&dz=60056&dc=1&dt=1/9/2006&tt=1&h
+y=&zn=2&am=Y");
my $te = HTML::TableExtract->new( depth => 3, count => 3);
$te->parse($page);
foreach my $ts ($te->table_states) {
foreach my $row ($ts->rows) {
print join(',', @$row), "\n";
}
}
__OUTPUT__
Service,Arrival Date and Time,Days in Transit*
DHL Next Day 10:30 am
(Letter ű 150 Pounds),Tuesday,áJaná10,á2006 áBy 10:30 A.M.,1
DHL Next Day 12:00 pm
(Letter ű 150 Pounds),Tuesday,áJaná10,á2006 áBy Noon,1
DHL Next Day 3:00 pm
(Letter ű 150 Pounds),Tuesday,áJaná10,á2006 áBy 3:00 P.M.,1
DHL 2nd Day Service
(Letter ű 150 Pounds),Wednesday,áJaná11,á2006 áBy 5:00 P.M.,2
DHL Ground Service
(Letter ű 150 Pounds),Tuesday,áJaná10,á2006 áBy end of day,1
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.