I am trying to create user accounts for my website(To store preferences and data) and I am wondering if anyone could help me with two things.
First, I have looked around a lot, but cannot seem to find any good resources on creating user accounts for a website(all of the web results seem to be about user accounts on a computer or server), so if anyone could suggest a good resource to learn about creating user accounts, that would be great.
Second, what is the best way to remember if a user is logged in? Right now, I have a database that stores users with their emails, passwords and other data. I am wondering how I can check on each page to see who the user is(after they have logged in). Would I use a cookie for this?
If so, how would that work? Would the cookie store their username and password? That does not seem very secure but it is the only way I can think of at the moment.
$_SESSION, which allows you to keep users signed in. Just search over the internet, you can start from PHP registration form. – F0G Jul 9 '12 at 13:39