Try LWP::Simple
use LWP::Simple;
$content = get("http://yahoo.com";);
print "Content-type: text/html\n\n";
print $content;
Or use HTML::Parser or HTML::TokeParser
To get only specific thing from $content.
Very smooth once you do it a bit.
> -Original Message-
> From: dan [mailto:[EMA
I'd suggest LWP::Simple.
http://search.cpan.org/author/GAAS/libwww-perl-5.69/lib/LWP/Simple.pm
HTH,
José
> -Original Message-
> From: dan [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 19, 2003 8:38 PM
> To: [EMAIL PROTECTED]
> Subject: Getting HTML files from remote sites
>
>