in reply to Re: Retrieving Info from other Web pages
in thread Retrieving Info from other Web pages

Simple example to slurp in Google's home page:

#!/usr/bin/perl use LWP::Simple; my $page; unless (defined ($page = get 'http://www.google.com')) { die "Can't retrieve page"; }
Although I think it's worth learning the more complicated LWP::UserAgent module if you're doing something with more depth...

cLive ;-)