Jump to content

Creating tables using PHP


forumnz

Recommended Posts

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'; 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.