Hi All, I am trying to learn how to make a basic member system.
All the system needs to do is:
- Allow login (login.php) using a username and password (passwords will be hashed using SHA-512).
- Have a page (index.php) with information and text (from database) which can only been seen by the user that is logged in.
- Simple sign-up form with name, email and password boxes. This would need to hash the password and store it in the database for that user.
I have no idea where to start at the moment is there an example code I can look at to get an idea of how this will work?
Any help would be great thanks.