RW_GET_COOKIE
Purpose
Retrieves the value of a
.Syntax
RW_GET_COOKIE(Name, vValue)
Parameters
Name The name of the required cookie.
vValue A variable in which to return the value of the cookie. If the cookie does not exist, vValue is set to an empty string.
The value extracted from the cookie is decoded to convert each escape sequence in the form %xx, (where xx is two hexadecimal digits) to the single character represented by the hexadecimal digits in the Latin-1 encoding. This encoding is fully compatible with the
escape() method.