Hi guys i'm creating a new table in sql to allow users to register with my website, this is the sql code that I'm suing does this seem ok to you?
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;
I've only connected PHP via the ADODB connection and nnot mysql so this is new to be any help would be appreicated