hi guys i'm creating my own website and i want to let users register and for them to be able to let them take a quiz.
I have created this sql code
CREATE DATABASE `dyscaculia` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
USE `dyscaculia`;
CREATE TABLE IF NOT EXISTS `users` (
`Firstname` varchar(1) DEFAULT NULL
`Lastname` varchar(1) DEFAULT NULL
`Username` varchar(1) DEFAULT NULl
`Email` decimal(1) DEFAULT NULL,
`ConfirmEmaill` varchar(1) DEFAULT NULL
`Password` varchar(1) DEFAULT NULL
`PasswordEmaill` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
any help will be brilliant thanks in advance