PHP How do I retain all GET vars in links? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:40:05Zhttp://stackoverflow.com/feeds/question/789842http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links2PHP How do I retain all GET vars in links?Andy Moore2009-04-25T22:26:50Z2009-04-26T20:48:54Z
<p>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:</p>
<pre><code>$allPreviousVars = ???; // Could be 20+ vars
echo "<a href='".$allPreviousVars."&newVar=2'>Link</a>";
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/789850#789850-2Answer by Rob for PHP How do I retain all GET vars in links?Rob2009-04-25T22:29:05Z2009-04-25T22:29:05Z<p>Your best bet is, as you suggested, to loop over the contents of <code>$_GET</code>, constructing the URL from a mixture of the existing query parameters plus your overridden bits.</p>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/789851#7898518Answer by JW for PHP How do I retain all GET vars in links?JW2009-04-25T22:30:39Z2009-04-26T20:48:54Z<p>How about $_SERVER["QUERY_STRING"]?</p>
<p><strong>EDIT:</strong> 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 <code>"></code> in it, and it would break your link.</p>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/789859#7898590Answer by Emil H for PHP How do I retain all GET vars in links?Emil H2009-04-25T22:34:47Z2009-04-25T22:34:47Z<p>Use <a href="http://se2.php.net/manual/en/function.http-build-query.php" rel="nofollow">http_build_query()</a> 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"].</p>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/789865#7898650Answer by George Crawford for PHP How do I retain all GET vars in links?George Crawford2009-04-25T22:37:52Z2009-04-25T22:37:52Z<p>I would probably do this:</p>
<pre><code>$query = mySanitizeFunction($_GET);
$url = http_build_query($query) . '&newVar=2';
</code></pre>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/791525#7915250Answer by Ciaran McNulty for PHP How do I retain all GET vars in links?Ciaran McNulty2009-04-26T20:16:13Z2009-04-26T20:16:13Z<p>I do this as follows:</p>
<pre><code><?php echo http_build_query(array_merge($_GET, array('foo'=>'bar', 'foo2'=>'bar2')); ?>
</code></pre>
<p>Note that any existing 'foo' or 'foo2' keys would be replaced.</p>