Falling Entropy
1) Create user signup and login functions
2) Create user question and answer section
3) Create menu of options with links to other pages
----------------------------------------------------
USE user_signup_db; CREATE TABLE users ( id INT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50) NOT NULL UNIQUE, email VARCHAR(100) NOT NULL UNIQUE, password_hash VARCHAR(255) NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );