Array GET all data and add page number at end

82 Views Asked by At

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>&laquo; 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.

2

There are 2 best solutions below

1
On BEST ANSWER

Instead of merging your get array with a new array, you could simply use the query string and append to it, like so:

$new_url = 'search.php?' . $_SERVER['QUERY_STRING'] . '&page=' . ($pagecount-1);
0
On

Use parse_str function. But you have a incorect url because of same variables name.

   $url = 'search.php?q=dvd+player&attr=23903940_portable_dvd_player&attr=23903945_cd&attr=23903935_mpeg_4';
    parse_str($url, $output);
    var_dump($output);