The ZAP input parameters can be refereed to by the notation "$parametername". The example below shows a link to a search with three search terms:
<A HREF="http:mysearch.zap?term1=$term1&term2=$term2&term3=$term3"> MY RECORD! </A> |
There is, however, a shorthand notation for referring to all the "terms", "fields", "operators" and "targets" where you instead of term1=$term1&term2=... simply writes ${ parametername*=}. The example above can then be written as
<A HREF="http:mysearch.zap?${term*=}"> MY RECORD! </A> |