PHP Database backup Script

Source: Internet
Author: User

<?php // 备份数据库 $host = "localhost" ; $user = "root" ; //数据库账号 $password = "" ; //数据库密码 $dbname = "mysql" ; //数据库名称 // 这里的账号、密码、名称都是从页面传过来的 if (!mysql_connect( $host , $user , $password )) // 连接mysql数据库      {          echo ‘数据库连接失败,请核对后再试‘ ;      exit ; } if (!mysql_select_db( $dbname )) // 是否存在该数据库      {          echo ‘不存在数据库:‘ . $dbname . ‘,请核对后再试‘ ;      exit ; } mysql_query( "set names ‘utf8‘" ); $mysql = "set charset utf8;\r\n" ; $q1 = mysql_query( "show tables" ); while ( $t = mysql_fetch_array( $q1 )) {      $table = $t [0];      $q2 = mysql_query( "show create table `$table`" );      $sql = mysql_fetch_array( $q2 );      $mysql .= $sql [ ‘Create Table‘ ] . ";\r\n" ;      $q3 = mysql_query( "select * from `$table`" );      while ( $data = mysql_fetch_assoc( $q3 ))      {          $keys = array_keys ( $data );          $keys = array_map ( ‘addslashes‘ , $keys );          $keys = join( ‘`,`‘ , $keys );          $keys = "`" . $keys . "`" ;          $vals = array_values ( $data );          $vals = array_map ( ‘addslashes‘ , $vals );          $vals = join( "‘,‘" , $vals );          $vals = "‘" . $vals . "‘" ;          $mysql .= "insert into `$table`($keys) values($vals);\r\n" ;      } } $filename = $dbname . date ( ‘Ymjgi‘ ) . ".sql" ; //存放路径,默认存放到项目最外层 $fp = fopen ( $filename , ‘w‘ ); fputs ( $fp , $mysql ); fclose( $fp ); echo "数据备份成功" ; ?>

PHP Database backup Script

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.