1、Listtable.php,用途:列出待备份的表
2、Backup.php 开始数据表的备份
<?php
//备份开始
if ($table=="") header("Location:listtable.php");
$con=mysql_connect('localhost','root','xswlily');
$query="select * from $table ";
//数据库查询
$result=mysql_db_query("embed",$query,$con);
$filestr="<"."?xml version="1.0" encoding="GB2312"?".">";
$filestr.="<".$table."s>";
while ($row=mysql_fetch_array($result))
//列出所有的记录
{$filestr.="<".$table.">";
$fields=mysql_list_fields("embed",$table,$con);
$j=0;
//$num_fields=mysql_field_name($fields,$j);
//echo $num_fields;
while ($j$num_fields=mysql_field_name($fields,$j);
$filestr.="<".$num_fields.">";
$filestr.=$row[$j];
$filestr.="";
$j++;}
$filestr.="";
}
$filestr.="";
echo $filestr;
//文件操作代码
$filename=$table.".xml";
$fp=fopen("$filename","w");
fwrite($fp,$filestr);
fclose($fp);
echo "数据表".$table."备份完成!";
?>
以上的代码,不失为一个php mysql备份的另类思路,借助xml文件实现了mysql数据表的备份。
脚本学堂,祝大家学习进步,实现自己的中国梦,呵呵。
您可能感兴趣的文章:
php数据库备份类 分享一个不错的php数据库备份类