in reply to WWW::Mechanize click_button() not working in AIX
You have unterminated statements in your code. Change
my $outpath = "/home/data/output" my $fromday = 7
to
my $outpath = "/home/data/output"; my $fromday = 7;
Consider adding use warnings; near the start of your script.
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: WWW::Mechanize click_button() not working in AIX
by perl_monster (Novice) on Jul 10, 2012 at 17:08 UTC |