okay, so i have a search form that has some optional fields, so when the form is submitted using the GET method to its processing php page, the resulting URL may have blank values in it, and it gets quite long.
What id like to know is is there a way to either get the form to ignore the blank form fields when you submit the form, or to have the form processing page rewrite the URL to remove the blank key/value pairs?
I would use POST except that i need to paginate the results, and using POST makes this impossible AFAIK (as the minute you go to say page 2 the POST variables are lost) without using SESSION variables or a cookie...not great either when users may want to bookmark the results pages
Any help would be greatly appreciated