Snippet details
ID: 122
Viewed: 1386
Added: 2003-07-27
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.
<!---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
