$Web Hdr Name: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
mNo edit summary
 
Line 7: Line 7:


==Syntax==
==Syntax==
<p class="syntax"><span class="term">%count</span> = $Web_Hdr_Name( field_number )
<p class="syntax"><span class="term">%count</span> = $Web_Hdr_Name( <span class="term">field_number</span> )
</p>
</p>



Latest revision as of 22:25, 5 June 2013

Name of request header field

$Web_Hdr_Name retrieves the name of a field in a request header.

$Web_Hdr_Name takes a single argument and returns a string, or null if the number references a non-existing field.

Syntax

%count = $Web_Hdr_Name( field_number )


$Web_Hdr_Name is useful when writing generic server applications, when the server does not know what field name exists at a particular location in a request.

* Get the number of header fields. %x = $Web_Num_Hdr * Load the header field names into an array. FOR %y FROM 1 TO %x %HDR_FIELD(%y) = $Web_Hdr_Name(%y) END FOR

See also