use LWP::Simple; my $content = get("http://www.photographersdirect.com/sellers/pe_sellerredirect.asp?$ENV{'QUERY_STRING'}"); if (defined $content) { #$content will contain the html associated with the url mentioned above. print $content; }