CGI Environment Variables : Environment Variables « CGI « Perl






CGI Environment Variables

    



# The HTML file with a hotlink to a CGI script

<html>
<head>
<title>TESTING ENV VARIABLES</title>
</head>
<body>
<p>
<a href="printenv.pl">here</a>
<p>text continues here...
</body>
</html>


#!/bin/perl
print "Content type: text/plain\n\n";
print "CGI/1.1 test script report:\n\n";

while(($key, $value)=each(%ENV)){
    print "$key = $value\n";
}

   
    
    
    
  








Related examples in the same category

1.Display CGI environment variables
2.Viewing Environment Variables in a CGI Script
3.Learn about the server for a CGI request
4.Program to display CGI environment variables.
5.$ENV{'HTTP_USER_AGENT'}, $ENV{'SERVER_PROTOCOL'}, $ENV{'HTTP_HOST'}
6.Get and display the browser type by referencing HTTP_USER_AGENT
7.Server Environment Values
8.CGI request-related environment variables
9.CGI server-related environment variables
10.CGI client-related environment variables
11.HEADER DESCRIPTION
12.Display all values in env
13.Determining the User Agent and Printing the Appropriate Result
14.CGI Environment Variables (Must Be Uppercase)
15.CGI environment variable
16.An example of using QUERY_STRING.