vote up 2 vote down star

I have some PHP code that generates dynamic tables of data on the fly. By clicking various links you "refine" the tables of data. What I'd like is each of these links to retain the current GET information and add to it. IE:

$allPreviousVars = ???; // Could be 20+ vars
echo "<a href='".$allPreviousVars."&newVar=2'>Link</a>";

I can think of ways to do it by iterating through $_GET with a loop, but surely there is a quicker way to do this?

flag

I see that you are not sanitizing your input variables. – htw Apr 25 at 22:29
"???" is my input sanitizing function actually. :P – Andy Moore May 9 at 19:24

5 Answers

vote up 8 vote down check

How about $_SERVER["QUERY_STRING"]?

EDIT: Since you were kind enough to give me credit for this answer, I should add one thing. You should wrap the above variable in htmlspecialchars() before you output it. Otherwise someone could type a URL with "> in it, and it would break your link.

link|flag
I knew I saw something like that earlier. Perfect, thanks. – Andy Moore Apr 25 at 22:34
vote up 0 vote down

Use http_build_query() if you need to generate a query-string from a modified array. If you just want the querystring sent to the current page, do as suggested and use $_SERVER["QUERY_STRING"].

link|flag
vote up 0 vote down

I would probably do this:

$query = mySanitizeFunction($_GET);
$url = http_build_query($query) . '&newVar=2';
link|flag
vote up 0 vote down

I do this as follows:

<?php echo http_build_query(array_merge($_GET, array('foo'=>'bar', 'foo2'=>'bar2')); ?>

Note that any existing 'foo' or 'foo2' keys would be replaced.

link|flag
vote up -2 vote down

Your best bet is, as you suggested, to loop over the contents of $_GET, constructing the URL from a mixture of the existing query parameters plus your overridden bits.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.