a lot of info/detail is missing, the following might be able to get you started:
#!/usr/bin/perl -w use strict; use LWP::UserAgent; my $ua = new LWP::UserAgent; my $usr = 'user'; my $psw = 'psw'; foreach my $url (qw(url1 url2 url3 url4)){ my $req = new HTTP::Request GET => $url; $req->authorization_basic($usr,$psw); my $rep = $ua->request($req); next unless($rep->is_success); print "$url:\n",$rep->content; #-- or parse content anyway you want } a lot of detail are obmited and depends on the secure scheme the web site requires, the above might not work at all. check out libwww for more info. david Ed Andrews wrote: > How does one create a program to: > > 1. log into a secure web site which requires a username and password > 2. "click", or go to a specific web page within the site, parsing info > from it > 3. from data received from page, repeat step 2 > > Ed Andrews > [EMAIL PROTECTED] > 515-707-2000 phone > 866-299-0676 toll-free > 775-659-4921 efax > > > == Get the #1 rated ISP at http://dotNow.com for only $9.95 == -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]