The table is not created in the database Users and there is no error message at all. PhpMyAdmin is set to allow no password, just to be clear on that point.
CREATE TABLE Users(
ID string(255) NOT NULL,
FirstName string(255) NOT NULL,
Surname string(255) NOT NULL,
DOB date(10) NOT NULL
)
CREATE TABLE Users( ID varchar(255) NOT NULL, FirstName varchar(255) NOT NULL, Surname varchar(255) NOT NULL, DOB date NOT NULL )