51 lines
3.6 KiB
HTML
51 lines
3.6 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="topic" />
|
|
<meta name="DC.Title" content="Environment variables" />
|
|
<meta name="abstract" content="Before you begin writing your CGI program, you need to understand the format in which the server will pass the data. The server receives the URL-encoded information and, depending on the type of request, passes the information to the CGI program. The server does this by using environment variables, command line arguments, or standard input." />
|
|
<meta name="description" content="Before you begin writing your CGI program, you need to understand the format in which the server will pass the data. The server receives the URL-encoded information and, depending on the type of request, passes the information to the CGI program. The server does this by using environment variables, command line arguments, or standard input." />
|
|
<meta name="DC.Relation" scheme="URI" content="rzaieparcgi.htm" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 2002,2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2002,2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="rzag3ch1envvar" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>Environment variables</title>
|
|
</head>
|
|
<body id="rzag3ch1envvar"><a name="rzag3ch1envvar"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">Environment variables</h1>
|
|
<div><p>Before you begin writing your CGI program, you need to understand
|
|
the format in which the server will pass the data. The server receives the
|
|
URL-encoded information and, depending on the type of request, passes the
|
|
information to the CGI program. The server does this by using environment
|
|
variables, command line arguments, or standard input.</p>
|
|
<p>A CGI application program should be able to handle a NULL value when getting
|
|
an environment variable. For example, when the CGI program is trying to do
|
|
a getenv(″CONTENT_LENGTH″) and the method is GET, the value would be returned
|
|
NULL. This is because CONTENT_LENGTH is only defined in method POST (to describe
|
|
the length of standard input).</p>
|
|
<p>The supported environment variables for HTTP Server can be found in the IBM<sup>®</sup> iSeries™ Information
|
|
Center. The environment variables have been divided into two groups: Non-SSL
|
|
and SSL. For more information, see <a href="rzaieenvvar.htm">Environment variables on HTTP Server</a></p>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="rzaieparcgi.htm" title="This topic provides information about Common Gateway Interfaces (CGI).">Common Gateway Interface</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |