We have updated the module. New version provides ability to use request parameters in SQL query. Use it in the next way:
{$REQUEST:PARAM_NAME}
Where PARAM_NAME is name of request parameter. For example if you want to show title of articles which are assigned to specific content category and get category id from "catid" request parameter, use the following query in "SQL query" parameter:
Code: |
SELECT
id,title,catid
FROM
#__content
WHERE
catid = {$REQUEST:catid|filter:int}
|
PS: The latest version of the extension can be downloaded in "Member Area".
Regards,
ARI Soft