Help for this page
use strict; my $input = "somefile.html"; open (INPUT, $input) || die; my $content = <INPUT>; close INPUT;
use strict; my $content = LWP::Simple::get($input);