I can't seem to get my register page working with a password.
This is the query I executed:
CREATE TABLE dbUsers (
id INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(16) unique,
password CHAR(16),
email VARCHAR(25)
);
It only registers if there is no password filled..