{GET} :
How to get URL paramaters on a page?
In order to use passed URL parameters on your page you can use {GET:paramemetrName} tag. This tag will extract given parameter name from URL and print it on screen. Such as {GET:firstName} will extract firstName from this URL page.html?firstName=John ...
{POST} :
How to get POSTED values on a page?
Just like {GET} tag reads URL paramaters, {POST:parameterName} tag reads the posted values on your page.For example:Let's say you have two pages, first page has a form in it which asks users first and last names.Page 1page2.html" method="post">&nbs...
{SET} :
How to set a value like it was passed from URL
{SET:parameterName:value} tag is simply the reverse action of {GET} and {POST} tags. They were reading the request parameters, with SET tag you can set request parameters on your template.For example:Instead of sending RPP from URL as ?rpp=10 y...
Search in articles
|