Question: Create a working html / PHP login and account creation page for a website that uses this MySQL Users table in it's database; users (
Create a working htmlPHP login and account creation page for a website that uses this MySQL Users table in it's database;
users
id INT AUTOINCREMENT PRIMARY KEY,
username VARCHAR NOT NULL,
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
access INTEGER NOT NULL,
joindate DATETIME DEFAULT CURRENTTIMESTAMP,
UNIQUE username
UNIQUE email
;
"acess" being automatically set to and the password being hashed before it is inserted into the database.
Please include something like a DAO.php file, showing the backend functions to interact with the MySQL databasetables
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
