用PHP实现XML备份Mysql数据库

2008-02-23 07:42:20来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

以下是在Linux下通过Apache PHP对Mysql数据库的备份的文档代码:

文档一、Listtable.php (文档列出数据库中的任何表格,供选择备份)

请选择要备份的表格:

<?

$con=mysql_connect('localhost','root','xswlily');

$lists=mysql_list_tables("embed",$con);

//数据库连接代码

$i=0;

while($i
$tb_name=mysql_tablename($lists,$i);

echo "".$tb_name."

";

//列出任何的表格

$i ;}

?>

文档二、Backup.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实现XML备份数据库的操作方法,其实并不复杂,通过XML,我们能够备份各种各样的数据库,当然也能够通过相关的方法将备份的XML文档恢复到数据库中,这里就不周详描述了。


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: 使用MySQL内建复制功能来最好化可用性

下一篇: MySQL数据库备份守则和方法