D
Dackle
Newbie question: I'm trying to retrieve general HTML web pages but
running into a few problems, which in part are probably due to the
fact that I've never used Perl modules before. I downloaded
libwww-perl and copied LWP::Simple into the Perl lib directory, but
I'm still having trouble grabbing web pages. I tried something like
this:
use LWP::Simple;
$url="www.torontostar.com";
$content= get($url);
But I keep getting back a type 2 error saying File "internet" does
not exist. I'm using the ActiveState port of Perl on Windows XP
through the Crimson Editor. Any advice? Is there any other way to
retrieve web pages using existing Perl modules?
running into a few problems, which in part are probably due to the
fact that I've never used Perl modules before. I downloaded
libwww-perl and copied LWP::Simple into the Perl lib directory, but
I'm still having trouble grabbing web pages. I tried something like
this:
use LWP::Simple;
$url="www.torontostar.com";
$content= get($url);
But I keep getting back a type 2 error saying File "internet" does
not exist. I'm using the ActiveState port of Perl on Windows XP
through the Crimson Editor. Any advice? Is there any other way to
retrieve web pages using existing Perl modules?