Hi guys, I need help badly... I've been trying to put up a session handler on my project using this snippet...
session_name("qu4RADlang");
session_cache_expire(1);
session_cache_limiter ('private, must-revalidate');
session_start();
header("Cache-control:private");
nothing fancy so far, but when the session handler is called, instead of referring to the same session variables, it makes another session file.
to make matters worse, I simply copied and pasted this from a previous project (under a different session_name). the previous project I got this from doesn't have the same problem.
any thoughts?
Thanks in advance...