in reply to
Getting External HTML
If nothing is working, finally you can use wget which used to be installed on Linuxes.
$html = `wget -O - $url`;
[download]
The -O - option tells wget to output the document to STDOUT. If you are on a Linux box this is the easiest way, though not a perlish solution :-)
-- tune
Comment on
Re: Getting External HTML
Download
Code
In Section
Seekers of Perl Wisdom