"Fix Deprecation messages sqldump.php"
This commit is contained in:
parent
b57d4d8b17
commit
ae8f9f152b
1 changed files with 11 additions and 11 deletions
|
@ -15,24 +15,24 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
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
|
||||
# version 0.0.2
|
||||
# version 0.0.3
|
||||
#
|
||||
# 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";
|
||||
$tables = mysql_query("SHOW TABLES");
|
||||
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";
|
||||
}
|
||||
echo "DROP TABLE IF EXISTS `$table_name`;\n";
|
||||
$create = mysql_fetch_assoc(mysql_query("SHOW CREATE TABLE `$table_name`"));
|
||||
echo $create['Create Table'].";\n\n";
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue