I added an Advanced Search page using this extension. And I added a link to that page underneath the search bar in my Ace-Neutral template.
Code:
<a href="/Advanced_Search" style="margin-left:2px; color:#777777">Advanced Search</a>
I would like that link to also send the current page's path to the advanced search form, but I'm not sure how to accomplish this.
Ideally, I would make the search-bar search from the path of the current page, but if this is not possible, then I would be okay with having the advanced search button.
I can retrieve the page's titleby using the following:
Code:
<?php $this->html('pagetitle'); ?>
But I'm pretty sure that is not the text I want to send.

Is there any way to retrieve a $_GET variable from dekiscript? Or is there a way to pass a parameter of some sort to this form?