Hello,
Unfortunately now 'ARI SQL Table' plugin doesn't provide this possibility, but you can use
DirectPHP extension for this purpose. This extension provides ability to use PHP commands inside Joomla! content pages. In you case, you can try the following code snippet with DirectPHP extension:
Code: |
<?php
$db =& JFactory::getDBO();
$pName = $db->Quote(JRequest::getCmd('filter', ''));
?>
{arisqltable}
{arisqltablequery}
SELECT id AS ID,name AS NAME
FROM jos_users
WHERE name LIKE <?php echo $pName; ?>
{/arisqltablequery}
{/arisqltable}
|
Regards,
ARI Soft