Unsupported scripts and control panel web app for a hosting company
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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>";