$Web_Cookie_Name

From m204wiki
Revision as of 20:32, 12 June 2012 by JAL2 (talk | contribs) (→‎Syntax)
Jump to navigation Jump to search

<section begin="desc" />Name of cookie<section end="desc" />

$Web_Cookie_Name retrieves the name of a cookie. $Web_Cookie_Name takes a single argument and returns a string, or null if the number references a non-existing cookie.

Syntax

<section begin="syntax" /> %rc = $Web_Cookie_Name( cookie_number ) <section end="syntax" />

Syntax terms

cookie_number The cookie number in the list of received cookies.


Examples

In the following code, the name of every cookie sent by a browser is placed into a string array.

%X = $Web_Num_Cookie FOR %Y FROM 1 TO %X %HDR_FIELD(%Y) = $Web_Cookie_Name(%Y) END FOR


See also