I know this is a regular topic on the board and I have read through some other posts on the subject but can't work out how to do what I need to do.
I start of with a form whose variables are posted to another page. This page accesses the variables through _POST etc.
I have a funtion on this receiving page to enable results to be browsed - normal sort of stuff incrementing offset values & then printing out a previous & next link at the bottom of the page.
When you click on the NEXT link it goes back to the same page but obviously now as I have the variables accessed by POST, these variables are no longer available the second time round thus giving obvious errors.
I can work out how I would do this if I could encode the variables within the URL link but the query strings are potentially quite long & I prefer not to encode search strings in URLs anyway.
How can I make these variables available to the script second time round, I was thinking of having to register them as session variables but this is not the best way I'm sure.
Anyone that can point me in the right direction - I'll be very happy.