Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

URL page only retrieves partially

Status
Not open for further replies.

canguro

Programmer
Sep 15, 2002
57
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top