I have the following code. I want the code to get all of the data from the current url which is like
search.php?q=dvd+player&attr=23903940_portable_dvd_player&attr=23903945_cd&attr=23903935_mpeg_4
Code:
<?php if ($pagecount > 1)
{
$paramsP1 = array_merge($_GET, array("page" => $pagecount-1));
$new_page_1 = http_build_query($paramsP1);
?>
<li><a href="search.php?<?php echo $new_page_1; ?>"><b>« Previous</b></a></li>
<?php } ?>
The code for some reason only obtains one of the GET variables which always seems to be the last one, so in this case its attr=23903935_mpeg_4 and adds "&page=X" onto it.
I have been looking at this code for a while however cant seem to understand why only one variable is returned.
Instead of merging your get array with a new array, you could simply use the query string and append to it, like so: