UrlGetParam
Receiving a parameter specified by param from URL.
Parameters:
| Name | Type, value | Description |
|---|---|---|
| param | String, required | The name of the parameter |
| name | String, default urlparam | The name of the variable for result |
Example:
Set url http://site.com?product=mp3player&vendor=samsung # Retrieve value of parameters "product" and "vendor" from query string Filter UrlGetParam url WithParams param=product name=product Filter UrlGetParam url WithParams param=vendor name=vendor # Print the result Dump product vendor
Result:
product => mp3player vendor => samsung
| TextToDOM | Standart Filters | UrlSetParam |

