Sorry might be missing the point here but do you mean database tables? In which case you'd use sql - something like this:
very basic example but quick search for 'php create a mysql table' give massive guides on helping you do this.$query = 'CREATE TABLE MY-NEW-TABLES( '.
'identifier INT NOT NULL AUTO_INCREMENT, '.
'my-name VARCHAR(20) NOT NULL, '.
'my-email VARCHAR(50) NOT NULL, '.
'PRIMARY KEY(identifieer))';
If of course you mean how do you actually create a html table then thats another thing entierly!



LinkBack URL
About LinkBacks

Bookmarks