monkeypaw201 Posted April 22, 2008 Share Posted April 22, 2008 i need to pass ALL variables posted via $_GET, but it varies... so i need something to post all, not just a couple that i set Quote Link to comment Share on other sites More sharing options...
pocobueno1388 Posted April 23, 2008 Share Posted April 23, 2008 Use a foreach loop. <?php foreach ($_GET as $key => $val){ echo $key .' - '. $val .'<br>'; } ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.