how can we create tables in php, i have been searching on google but couldn't find relevant material plz help guys, thanks in advance...!
how can we create tables in php, i have been searching on google but couldn't find relevant material plz help guys, thanks in advance...!
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!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks