trying to backup mysql database using php

Posted by user225269 on Stack Overflow See other posts from Stack Overflow or by user225269
Published on 2010-03-03T05:51:01Z Indexed on 2010/05/13 8:04 UTC
Read the original article Hit count: 173

Filed under:
|

I got this code from this site: http://www.php-mysql-tutorial.com/wikis/mysql-tutorials/using-php-to-backup-mysql-databases.aspx

But I'm just a beginner so I don't know what the config.php and opendb.php suppose to mean. Do I have to create those 2 files in order for this code to work? If yes, then how do I create it, it isn't included in the site how to create it.

<?php
include 'config.php';
include 'opendb.php';

$tableName  = 'mypet';
$backupFile = 'backup/mypet.sql';
$query      = "SELECT * INTO OUTFILE '$backupFile' FROM $tableName";
$result = mysql_query($query);

include 'closedb.php';
?> 

can I just include these lines on the top code so that I will not be putting the include 'opendb.php' anymore:

$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("Hospital", $con);

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql