in reply to using variables in lwp::simple
it is based on the helpful o'reilley perl and lwp book which I have just stumbled across!! ;+) thanksuse Strict; use warnings; use URI; my $infile = "search_str"; my $savedfile; my $url = URI->new('http://www.mysite.com/cgi_bin/getthis'); $url->query($infile); my $status = getstore($url, $savedfile);
|
|---|