I start a session and save a value to it
session_start();
$_SESSION['language_code'] = 'en-us';
then when i try to retrieve it on the next page
$language_code = $_SESSION['language_code'];
it is empty.
The code works perfect on my Win2k/Apache2/MySQL test server, but when I load it to my host it doesn't work, any ideas?