Hey,
I already have a search function that performs pagination. The search query is the easy part. I want to get advice/guidance on how I can make the pagination better.
In order for the pagination to work, I need to send the variable through the url. I.E. $term1=foo&$term2=bar
The only concern I have is that my search query has 11 variables. Now I want to know is there a better way to send search terms or a way to keep the original query embedded onto the page without loosing those variables from the initial form.
I want to limit the variables in the url to just page # and limit per page. I want to see if the variables for sql query can be stored on page somehow.