#!/usr/bin/perl -w use LWP::Simple; my $cUrl = 'http://chipcheck.mikatiming.de/?chip='; my $chip = "XYZ123C" my $content = get( $cUrl . $chip ); print $content; # end of file