in reply to Re: Retrieving Info from other Web pages
in thread Retrieving Info from other Web pages
Although I think it's worth learning the more complicated LWP::UserAgent module if you're doing something with more depth...#!/usr/bin/perl use LWP::Simple; my $page; unless (defined ($page = get 'http://www.google.com')) { die "Can't retrieve page"; }
cLive ;-)
|
|---|