Hello,
I am trying to retrieve the page defined by the following URL:
However, only the last (small) portion of the page comes back. Can someone straighten me out? Here is my code:
use warnings;
use strict;
use LWP::Simple;
my $site="my $content=get $site;
my $message=$content;
$message=~s/<.+?>/ /g;
print $message;
Thanks in advance,
Joe
I am trying to retrieve the page defined by the following URL:
However, only the last (small) portion of the page comes back. Can someone straighten me out? Here is my code:
use warnings;
use strict;
use LWP::Simple;
my $site="my $content=get $site;
my $message=$content;
$message=~s/<.+?>/ /g;
print $message;
Thanks in advance,
Joe