"Fix Deprecation messages sqldump.php"
This commit is contained in:
Wytze van der Raay 2013-10-16 10:42:36 +00:00
parent b57d4d8b17
commit ae8f9f152b

View file

@ -15,24 +15,24 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
header("content-type: text/plain"); header("content-type: text/plain");
?> ?>
# CAcert SQL Dump # CAcert SQL Dump
# version 0.0.2 # version 0.0.3
# #
# Generation Time: <?=date('r')?> # Generation Time: <?=date('r')?>
# #
# Database: `cacert` # Database: `cacert`
# #
<? <?
$tables = mysql_list_tables('cacert'); $tables = mysql_query("SHOW TABLES");
while(list($table_name) = mysql_fetch_array($tables)) while(list($table_name) = mysql_fetch_array($tables))
{ {
echo "# --------------------------------------------------------\n\n"; echo "# --------------------------------------------------------\n\n";
echo "#\n# Table structure for table `$table_name`\n#\n\n"; echo "#\n# Table structure for table `$table_name`\n#\n\n";
echo "DROP TABLE IF EXISTS `$table_name`;\n"; echo "DROP TABLE IF EXISTS `$table_name`;\n";
$create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `cacert`.`$table_name`")); $create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `$table_name`"));
echo $create['Create Table'].";\n\n"; echo $create['Create Table'].";\n\n";
} }
?> ?>