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 Link to comment https://forums.phpfreaks.com/topic/102431-complicated-_get/ 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>'; } ?> Link to comment https://forums.phpfreaks.com/topic/102431-complicated-_get/#findComment-524548 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.