Hi everyone,
I have a search results page in php that contains a form and data is sent using $_GET.
The results page has pagination and I'm currently trying to add the currect URL to each page number.
I'm looking at using the http_build_query function to do this, though I'm open to suggestions if there is a more appropriate function?
The problem I'm having is the form contains a checkbox array, so the URL generated by http_build_query is:
http://mysite/results.php?keyword=hello&form=Submit&Param1=Arrayoffset=20
How can retrieve the checkbox array values and get that back into the http_build_query function?