GET Parameter Data
GET Parameter Data
Section titled “GET Parameter Data”You can get the values of any url paramater passed to a page.
Example: example.com/?paramName=value
{{ getData.paramName }}POST Request Data
Section titled “POST Request Data”You can get any data passed to a page through the $_POST php variable.
{{ postData.paramName }}Session Data
Section titled “Session Data”You can get any data passed to a page through the $_SESSION php variable.
{{ sessionData.paramName }}If the variable name contains a hyphen, use bracket notation instead:
{{ sessionData['agent-location'] }}