Regarding the thread "SESSION HELL... Please Help."
I solved it.
Maybe it was me, maybe it just wasn't clearly documented... dunno -- either way -- it was frustrating...
Just FYI to all newbies to SESSIONS:
When you have a FORM, and some fields in that form... those fields are given HTML names (for example, name="first_name", etc..)
I was registering the HTML Input Name with SESSION_REGISTER() -- what I discovered is, you have to create individual session Variables independent of your Input Name Variables.
So, for example -- if I want to store the first_name field data into a session variable I would do something like:
session_start()
session_register("fName");
if($first_name != "")
{
$fName = $first_name;
}
Although this might seem obvious to some -- my thinking was that I needed to register the existing HTML Input Variables -- nope.
A SESSION must have it's own set of variables.
I hope this helps someone.
Jason