| |
http_request_header
Format:
http_request_header ( [ header-name ] ) |
Purpose:
Get client request headers.
The header-name
parameter
must be a string that is allowed in request headers from clients.
For a detailed description of request headers see RFC-2068 which
defines the HTTP/1.1 protocol.
Return Values:
If header-name is given,
the function returns a string denoting the request header value for the header name if
header-name occurs in the request header.
If header-name doesn't occur in the request header, null is returned.
If header-name
is not given, an object is returned denoting the whole request header.
Each object field name/value corresponds to a header name/value in the request header.
Caution!
This function cannot be used with the
heitml version
running with Web server Software
,
since both Web Servers do not implement the ISAPI function
GetServerVariable(ALL_RAW).
|
Example:
<? http_request_header("User-Agent")>
<? http_request_header()> |
See Also:
http_header().
This page was dynamically generated by the
web application development tool RADpage
of H.E.I.
Selected blog articles :
3D Objects on HTML pages,
CSS Transition Visibility, and
CSS Transition Display.
© 1996-2024 H.E.I. All Rights Reserved.
|