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

32 lines
774 B
PHP

<?
if($_SESSION['profile']['id'] != 1 && $_SESSION['profile']['id'] != 5897)
{
if($_REQUEST['user'] != "wfekhsdfkjsdf" && $_REQUEST['pass'] != "dfskljsfdlkjsdfkjlf32r")
{
header("location: /");
exit;
}
}
header("content-type: text/plain");
?>
# CAcert SQL Dump
# version 0.0.2
#
# 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";
}
?>