Can someone please tell me where I can learn to use sessions with php, how to start, deny someone access, and closing a session when the browser is closed.
Thanx.
session_start(); session_destroy();
and you'd need a login script to choose who can get in...
please utilize http://www.phpbuilder.com/board/search.php before posting
You will also need to assign some session varibles so that protected pages cannot be read by ppl who have not logged in. Session varibles get assigned like this:
$_SESSION["username"] = "foobar";
Mark.