Hi there im trying to add a button to a query list. Ive come up with the following, which works ok.
<?php
$link="<img src={mossite}/administrator/images/book.png>";
$value="<a href=\"{mossite}/index.php?option=com_facileforms&ff_name=AppBook&ff_time=$row->time&ff_date=$row->date&ff_page=2\">$link</a>";
return $value;
?>
However I don't like that the params are passed via the URL, can I do this with post?
How would I include a form submit button in the query list?
Looking for other ways I can do this?
Any help appreciated.