i have a search page (html file).i use the get method to give info to the php script so the browser shows :"search.php?search_type=something&search_key=something_else".but, my search script has multiple pages.so, when i do press next to the next set of records i lose the two variables from the form submission.what can i do ?
Your next button (or link, whichever) must contain those variables as well.
If you are using a form button, add hidden fields. If you are using a link, add parameters.
-Ben