Get url as www.abcd.com?curr=USD

<form action=’www.abcd.com/aboutus.php’ method=’get’> <select name=”curr” id=’test’> <option value=”USD”>USD</option> <option value=”Euro”>Euro</option> </select> <input type=”submit” value=”submit”> </form> on your pages simply put <? $curr = $_GET[‘curr’]; ?> now on every link include abcd.com?curr=<? echo $curr ?>

Passing $_GET value to $_POST

if i understand you correct, you just want put all variables from $_GET to $_POST? foreach ($_GET as $key => $value) { $_POST[$key] = $value; unset($_GET[$key]); } print “<pre>”; var_dump($_POST); print “</pre>”; hope it helps… but at all i think there should be another way to get your vars to your file