If the get value is used to set the language on every page, it surely has to be in the querystring of every page. Your answer, then is simply to change every internal link on your site to:
<a href="page.php?lingo=<?php echo $_GET['lingo']; ?>">
Not terribly elegant, though.
Dan
|