-------------------------------------------------------- #!c:/www/perl/bin/perl.exe #-- This Displays errors to browser --# BEGIN { $|=1; print "Content-type: text/html\n\n"; use CGI::Carp('fatalsToBrowser'); } $user = $ENV{"REMOTE_USER"}; print "
$user
"; --------------------------------------------------------