#! /usr/bin/perl print "Content-type: text/html\n\n" ; $_ = <> ; print "$_
"; for (split('&',$_)) { print "$_
" ; ($name,$value) = split /=/,$_ ; $cgidat{$name} = $value ; print "
\$cgidat{'$name'} = $value
" }