Page 1 of 1

mysql building tables in runtime

Posted: Tue Dec 02, 2003 3:37 am
by pelegk2
1)can i build tables at run time from php?
2) can i add and remove after it col's from my table?
thanks in advance
peleg

Posted: Tue Dec 02, 2003 3:54 am
by Weirdan
you can use such queries as:

Code: Select all

mysql_query("create table .....");
mysql_query("alter table add column....");
mysql_query("alter table drop column....");

thanks alot

Posted: Tue Dec 02, 2003 3:58 am
by pelegk2
just what i wanted!