forumnz Posted July 4, 2008 Share Posted July 4, 2008 Can PHPMyAdmin create PHP code to create tables? Thanks heaps! Sam. Quote Link to comment Share on other sites More sharing options...
fenway Posted July 4, 2008 Share Posted July 4, 2008 Not sure... but why would you need it to? Just paste the SQL statement directly... Quote Link to comment Share on other sites More sharing options...
bluejay002 Posted July 5, 2008 Share Posted July 5, 2008 Not sure... but why would you need it to? Just paste the SQL statement directly... I agree... and by far I know of, it does not, only presents the query used to make one. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted July 5, 2008 Share Posted July 5, 2008 Can PHPMyAdmin create PHP code to create tables? Thanks heaps! Sam. Yes, however it only generates an $sql variable for passing to mysql_query and nothing else. For example is ran the following query in PMA: SELECT * FROM Table It'll only generate $sql = 'SELECT `*' . ' FROM table'; Quote Link to comment 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.