jd2007 Posted July 11, 2007 Share Posted July 11, 2007 How do i create a new table automatically using php code in a script ? 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); 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 Link to comment https://forums.phpfreaks.com/topic/59425-phpmysql-help/#findComment-295278 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.