I would like to add a link back in the search reasultNo function provided with ajaxsearch for doing this kind of link
is there a bult-in function for this that I don’t know about?
otherwise I’m looking to extractYes the search result page is provided by Post only.
?searched=word1+word2 etc.. from the uri.
I see there’s also a $_POST[’search’], but it looks like I can’t access it in the result
<?php
$_segment = $_GET['searched'];
if ($_segment != NULL){
return '<a href="[~44~]?AS_search=' .$_segment .'">Back to Search Results</a>';
}
?>