in reply to Content Length

You'll want to investigate the LWP modules. example:
use strict; use LWP::UserAgent; my $request = new HTTP::Request('GET'=>"http://www.google.com" ); my $ua = new LWP::UserAgent; my $response = $ua->request($request) || return "ERROR\t$!"; print $response->content_length;
in return i get:
2927


--
Rock is dead. Long live paper and scissors!