#!/usr/bin/perl use CGI; use CGI::Carp qw(fatalsToBrowser warningsToBrowser); print "Content-type: text/html\n\n"; use DBI; my @drivers = DBI->available_drivers(); foreach my $driver ( @drivers ) {   if ($driver eq "mysql")   {      print "

Everything seems OK, your server has the programs needed to run this script

";   } } $temp = $ENV{'PATH'}; $ENV{'PATH'} = "/bin:/usr/bin"; $the_id = `id`; $whoami = `whoami`; $ENV{'PATH'} = $temp; print qq~   Scripts are running under id: $the_id
  Unix 'whoami' responds with: $whoami
~; exit;