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
mysql building tables in runtime
Moderator: General Moderators
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....");- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
thanks alot
just what i wanted!