Perlbeginner1 has asked for the wisdom of the Perl Monks concerning the following question:
for my $i (0..10000) { $ua->get('siteone_dot_com?show_subsite', id => , extern_uid => $i); # process reply }
use strict; use warnings; use WWW::Mechanize; use File::Basename; my $m = WWW::Mechanize->new; $m->get("the domain name ");
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: URL-String-concatenation within Perl [applying to a loop]
by 7stud (Deacon) on Nov 27, 2010 at 19:32 UTC | |
by Perlbeginner1 (Scribe) on Nov 27, 2010 at 20:09 UTC | |
Re: URL-String-concatenation within Perl [applying to a loop]
by morgon (Priest) on Nov 28, 2010 at 05:33 UTC | |
Re: URL-String-concatenation within Perl [applying to a loop]
by aquarium (Curate) on Nov 28, 2010 at 22:55 UTC | |
Re: URL-String-concatenation within Perl [applying to a loop]
by Anonymous Monk on Nov 27, 2010 at 18:11 UTC | |
by Perlbeginner1 (Scribe) on Nov 27, 2010 at 19:04 UTC |