You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/www/sqldump.php

29 lines
645 B
PHP

<?
if($_SESSION['profile']['id'] != 1 && $_SESSION['profile']['id'] != 5897)
{
header("location: /");
exit;
}
?>
<pre>
# CAcert SQL Dump
# version 0.01
#
# Generation Time: <?=date('r')?>
#
# Database: `cacert`
#
<?
$tables = mysql_list_tables('cacert');
while(list($table_name) = mysql_fetch_array($tables))
{
echo "# --------------------------------------------------------\n\n";
echo "#\n# Table structure for table `$table_name`\n#\n\n";
echo "DROP TABLE IF EXISTS `$table_name`;\n";
$create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `cacert`.`$table_name`"));
echo $create['Create Table']."\n\n";
}
?>
</pre>