Greetings,
gonna sound silly but how do you call a session stored var? Is it simply $val? If so why when I have registered a session value and then try to echo it out, i get NOTHING? I have checked the session files for the session in question and I can see the values in the session file?
Any help is appreciated!
Pete
well, what does your script look like? are you starting the session with session_start()? how are you registering your variables? it should look like this:
session_register("var");
that will register the variable: $var
http://www.php.net/manual/en/ref.session.php
Look at the section on "track_vars" and "register_globals"
-- Rich