Hello -
In the code to add a Search Box on Multiple pages, what is this for:
I just want a Basic Search Box on each of the pages, no radio buttons. Assuming the above code is for something I don't need (if I do it would go at the end of the code below...right?) - do I put this on each page that I want a search box on:
I have a Basic Search Box on the Index page that says Go and the code below (it works great):
I am assuming that I should use the code that has the zoom_per_page code above on each of the additional pages I want a Search Box on. What am I missing? Am I right that I use the two different codes and do one indexing? Sorry I just need a little understanding.
I have read the information in the Support FAQs, 5.8 in the manual, and did a search on the forum. Many thanks for the excellent support. I am so pleased with Zoom.
Frieda
In the code to add a Search Box on Multiple pages, what is this for:
Code:
<option selected="selected">10</option> <option >20</option> <option >100</option>
Code:
<form method="get" action="search.php"> <input type="text" name="zoom_query" size="20" /> <input type="submit" value="Search" /> <small> Results per page: <select name='zoom_per_page'> </form>
Code:
<form method="GET" action="search/search.php"> <input type="text" name="zoom_query" size="10"> <input type="submit" value="Go"> </form>
I have read the information in the Support FAQs, 5.8 in the manual, and did a search on the forum. Many thanks for the excellent support. I am so pleased with Zoom.
Frieda
Comment