Discussion Forums HTML, XML, JavaScript... |
 |
Software Reviews Editors,Others... |
 |
Top100 JavaScript Tutorials, ... |
 |
Tutorials ASP, CSS, Databases... |
Discussion List FAQ, Roundup, Configure ... |
 |
Authoring HTML, JavaScript, CSS... |
 |
Design Layout, Navigation,... |
 |
Graphics Tools, Colors, Images...
|
 |
Software Browsers, Editors, XML...
|
 |
Internet Domains, E-Commerce, ... |
 |
WDVL Resources Intermdiate, Tutorials,... |
 |
WDVL Discussion Lists, Top 100,... |
 |
| Technology Jobs |
 |
|
 |
|
|
Generate Revenue Through IT Using Business Service Management
Sponsored by HP
Making sure that your business applications are available to their end users is an important part of running your business smoothly. Business operations have evolved to where IT must now broaden its focus to help the company attract, retain and grow customer relationships and increase customer satisfaction. Business service management (BSM) helps lay the foundation by managing services in dynamic support of business requirements. »
|
|
Managing the Modern Network
Sponsored by HP
Networks are more than vehicles to transport e-mail and Web pages. In a global economy where information crosses the globe in an instant, and where Web-based applications power business, it's more important than ever to ensure your network is safe from threats and optimized to deliver the data your business needs. »
|
|
Storage Networking 2, Configuration and Planning
Sponsored by HP
In Part 1, we discussed storage area networks (SANs) and fibre channel. In Part 2, delve into best practices and cover the general concepts you must know before configuring SAN-attached storage. The most critical, sometimes tedious, part of setting up a SAN is configuring each individual disk array. This guide examines configurations for SAN-attached servers and disk arrays, and also includes a look at the future of IP storage.
»
|
|
Is Your Disaster Recovery Plan Good Enough? Get Disaster Recovery Right
Sponsored by HP
Preparing for a disaster is more often than not part of the storage planning process, and without question it is one of the most difficult task, since it includes local hardware and software, networking equipment, and a test plan to ensure that you can recover from the disaster. Learn how to put your organization on the proper disaster recovery plan, now. »
|
 |
|
|
|
|
|
CGI: Input, Client Header Lines
The header lines recieved from the client, if any, are placed
into the environment with the prefix HTTP_ followed by the header name.
These variables are specific to requests made with HTTP. Interpretation
of these variables may depend on the value of SERVER_PROTOCOL.
The HTTP header name
- is converted to upper case;
- "-" characters are changed to "_" characters;
- has "HTTP_" prepended to give the environment variable name.
The header data may be presented as sent by the client,
or may be rewritten in ways which preserves its semantics.
If multiple headers with the same field-name are received then they
must be rewritten as a single header having the same semantics.
A header that is received on more than one line must be merged onto a
single line.
The server must, if necessary, change the representation of the data
(for example, the character set) to be appropriate for a
CGI environment variable.
The server is not required to create environment variables for
all the headers that it receives.
It may exclude any headers which it has already processed,
such as Authorization, Content-type, and Content-length.
In particular, it may remove any
headers carrying authentication information, such as "Authorization";
it may remove headers whose value is available to the script via other
variables, such as "Content-Length" and "Content-Type".
If necessary, the server may choose to exclude any or all of these
headers if including them would exceed any system environment limits.
A couple of the often-used headers are:-
- HTTP_REFERER
The URL of the refering page, i.e. the page that the client is
following the link from.
- HTTP_USER_AGENT
The browser the client is using to send the request.
General format: software/version library/version.
|
|