Or should to question be "How do I create a table in a mysql database using PHP?"
In order to do that, you need to look into the mysql functions in php. I'm not going to detail them all here, since they are detailed quite well in the manual. Basically, all you need to do is send a query such as:
CREATE TABLE test (
col1 TINYINT NOT NULL,
col2 VARCHAR(50) NOT NULL
)
check the mysql manual for all the options you can use when creating a table.
For a nice web based way to do it, check out phpmyadmin at http://phpwizard.net/projects/phpMyAdmin/
Matt Wade
codewalkers.com