Hi!
I'm sending the variable $lang with my URL, to deside which language to display, like this:
<a href="http://www.mydomain.com/index.php?lang=nor">Norwegian Version</a>
But when I echo $lang, I just get "no", not "nor". This means that the lang is overwritten somewhere, or that it is a global variable of PHP.
How do I make sure the $lang variable used is the one that is sent by the url?
Maybe there exist a cookie with a variable named "lang", but I'd like to override this - do anybody know how?
Thanks,
Torbjørn