<?php require_once('sql_config.php'); if (!defined('MYSQL_CONNECTED')) die('Failed to connect to database!'); $tables = array( "QuestTimer_UserQuests", "QuestTimer_Admins", "QuestTimer_AvailableQuests", "QuestTimer_DeletedQuests", "Decal_DownloadCounts" ); echo('<pre>'); foreach ($tables as $table) { $result = mysql_query("SHOW CREATE TABLE $table"); if ($data = mysql_fetch_array($result)) { echo "<h1>$table</h1>", $data['Create Table'], "<br><br><hr>"; } } echo('</pre>'); ?>
|