You will probably get many different answers here too.
Here is what I do.
session_start(); // required on every script that uses sessions
session_register("session_name");
$session_name = "the_value";
echo $session_name;
// check a session exists
if (session_is_registered("session_name")) {
.. yes its registered
} else {
.. no its not
}
// destroy all session
session_destroy();
// unregister one session
session_unregister("sessoin_name");
Hope this has put a bit of light on it for you.
p.s. I use to do ASP to, PHP is easy to pick up and better.🙂