snippet library logo
in category
Perl / Misc. / Getting Server Variables
Snippet details
ID: 122
Viewed: 1386
Added: 2003-07-27
Version:

User Rated at:
Rate This:
Snippets in this catagory         
Show Printable Version
This little script will let you see all the serverside environment variables that are at your disposal. Just insert the following code into a file and name it whatever.cgi or whatever.pl. Then upload it to your server's cgi-bin and chmod it to 755. then run it from your favorite browser.

General Details
Snippet uploaded by: snippet
Email : webmaster@snippetlibrary.com
Snippet By: Kevin

<!---Head--->
none

<!---Body--->


#!/usr/bin/perl 
print "Content-type: text/htmlnn"; 
foreach $key (keys(%ENV)) { 
printf("<font color=crimson face=verdana size=2>%-10.20s:</font> <font color=blue size=2 face=verdana><b>$ENV{$key}</b></font><br>", $key); 

exit;




No Reviews to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Subject:

Reviewed By:

Write a review:





Terms of Conditions
Powered By
Avian Hosting
© 2005 snippetlibrary.com All Rights Reserved.