debian:/var/www# cat hello.pl #!/usr/bin/perl -w use strict; my $qrystrg = $ENV{'QUERY_STRING'}; ($varname, $varwert) = split(/=/, $qrystrg); print "Content-type: text/html\n\n"; print " Hallo $varwert

Hallo $varwert

";#!/usr/bin/perl -w