Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.pl 282B

12345678910
  1. #!/opt/perl/current/bin/perl
  2. print "Content-type: text/html\n\n";
  3. print "<HTML><HEAD>";
  4. print "<TITLE>CGI Test</TITLE>";
  5. print "</head>";
  6. print "<BODY><h2>Perl Enviroment Info</h2>";
  7. foreach $key (sort keys(%ENV)) {
  8. print "$key = $ENV{$key}<p>";
  9. }
  10. print "</BODY></HTML>";