The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

creating tables in php

bryanfuller

New Member
affiliate
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:

$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))';

very basic example but quick search for 'php create a mysql table' give massive guides on helping you do this.


If of course you mean how do you actually create a html table then thats another thing entierly!
 
MI
Back