ok.
so i've got my temlpate, it starts with Session_start() and then a bit further down in a non editable region, its got:
list($tableid, $id) = explode("-", $_SESSION['id']);
$name = $_SESSION['name'];
So i submit it all ($SESSION['id] = employers-11 and $SESSION['name'] = stuffs) and then it goes to a logged in page, and i echo some variable to make sure they've all gone in the sessions properly.
$id echos as 11
$tableid echos as employers
$name echos as stuffs
so im all logged in and happy, so i go to another page (jobs) and echo it again. but this time i get
$id echos as
$tableid echos as 11
$name echos as stuffs
so i refresh the jobs page, and i get
$id echos as
$tableid echos as
$name echos as stuffs
Why isn't t carrying it all across?
Thanks
Dom
p.s. i havn't included much code used because i wasn't sure which code, so just tell me and ill post it