Using php, one can create a mysql database with mysql_create_db.
What php function is used to dynamically create a new table?
Richie.
CREATE TABLE example(id INT NOT NULL, characters CHAR NOT NULL, PRIMARY KEY (id));
id
characters
or rtm:
http://www.mysql.com/doc/C/R/CREATE_TABLE.html