|
That would only take like 5 minutes in PHP/MYSQL if you know what your doing. All you need to do is set up a database:
user_id (autoincrement)
user_name
user_password
user_logged (0=no | 1=yes)
Then have a login script, and check to see if the user_logged value is 0 or 1, and allow them access accordingly.
|