PHP How do I retain all GET vars in links? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:40:05Z http://stackoverflow.com/feeds/question/789842 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links 2 PHP How do I retain all GET vars in links? Andy Moore 2009-04-25T22:26:50Z 2009-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 "&lt;a href='".$allPreviousVars."&amp;newVar=2'&gt;Link&lt;/a&gt;"; </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 -2 Answer by Rob for PHP How do I retain all GET vars in links? Rob 2009-04-25T22:29:05Z 2009-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#789851 8 Answer by JW for PHP How do I retain all GET vars in links? JW 2009-04-25T22:30:39Z 2009-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>"&gt;</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#789859 0 Answer by Emil H for PHP How do I retain all GET vars in links? Emil H 2009-04-25T22:34:47Z 2009-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#789865 0 Answer by George Crawford for PHP How do I retain all GET vars in links? George Crawford 2009-04-25T22:37:52Z 2009-04-25T22:37:52Z <p>I would probably do this:</p> <pre><code>$query = mySanitizeFunction($_GET); $url = http_build_query($query) . '&amp;newVar=2'; </code></pre> http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/791525#791525 0 Answer by Ciaran McNulty for PHP How do I retain all GET vars in links? Ciaran McNulty 2009-04-26T20:16:13Z 2009-04-26T20:16:13Z <p>I do this as follows:</p> <pre><code>&lt;?php echo http_build_query(array_merge($_GET, array('foo'=&gt;'bar', 'foo2'=&gt;'bar2')); ?&gt; </code></pre> <p>Note that any existing 'foo' or 'foo2' keys would be replaced.</p>