#!/usr/local/bin/perl -wT use CGI qw(:standard :html3); use LWP::Simple; use strict; my $locat = "http://www.nsn.org/elghome/material_office2.html"; # note that there is no better diagnostic info from get() my $html = get( $locat ) or die "Could not read data from $locat"; print header, start_html, $html, end_html;