Ok, i'm new to sessions and I am not to clear. However, this is what i gather.. and what i'm trying to do.. HOw is my code off?
FIrst off i want to set 3 variables in the session to be passed along
$name
$email
$ok
From what i have gatherd.. This is how i do this..
session_start();
$_session['name'] = $name;
$_session['email'] = $email;
$_session['ok'] = $ok;
Any suggestions or the write way of doing it LOL
Thank you
Anthony