Use PHP to create the CelebrityAddresses table.
Datatypes in MySQL are similar to Access datatypes. Instead of Text we use CHAR or VARCHAR.
CHAR is for a set number of characters, say 10 characters: CHAR(10)
VARCHAR is for a variable number of characters, say 50 characters: VARCHAR(50)
The code below creates a table named Celebrity Address in your database. Use your own connecton settings.
This code will only create the table one time. After the creation you will always get the "Unable to create table" message.