Hi there,
I have been trying to find out a good way to set up user and manage user registration etc, that will allow many people to register at a site. I would like to know how yahoo does it, for example.
I am proposing to simply use sessions, track user info in an array that is registered with the session and put a check at the top of each page thus :
// Check if I have a session ...
session_start();
if (!session_is_registered("userData")) {
header("Location: login.php");
}
Is this secure, safe, professional practice?
Unfortunately I travel the PHP road alone ....
Very much appreciated and many thanks
p