jd2007 Posted July 11, 2007 Share Posted July 11, 2007 How do i create a new table automatically using php code in a script ? Quote Link to comment https://forums.phpfreaks.com/topic/59425-phpmysql-help/ Share on other sites More sharing options...
chiprivers Posted July 11, 2007 Share Posted July 11, 2007 $query = "CREATE TABLE tablename (field type, field type, field type)"; $result = mysql_query($query); Quote Link to comment https://forums.phpfreaks.com/topic/59425-phpmysql-help/#findComment-295275 Share on other sites More sharing options...
Yesideez Posted July 11, 2007 Share Posted July 11, 2007 http://www.desilva.biz/mysql/createtbl.html Quote Link to comment https://forums.phpfreaks.com/topic/59425-phpmysql-help/#findComment-295278 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.