PHP Classes

File: example-restore.php

Recommend this page to a friend!
  Classes of Richard Munroe   SQL Backup   example-restore.php   Download  
File: example-restore.php
Role: Example script
Content type: text/plain
Description: Example of restore
Class: SQL Backup
RDBMS independent backup and restore SQL databases
Author: By
Last change:
Date: 17 years ago
Size: 1,234 bytes
 

Contents

Class file image Download
<?php
//---- EXAMPLE FILE - BACKUP

//---- Including the class.
include 'class.SQLBackup.php';

//---- Database host, name user and pass.
//---- Change these to match your mysql database.
$db_host = "localhost" ;//---- Database host(usually localhost).
$db_name = "test" ;//---- Your database name.
$db_user = "root" ;//---- Your database username.
$db_pass = "" ;//---- Your database password.

//---- The name of the file which you want restore data from.
// You need to use physical path to this file. e.g. ../data/backup.txt
$output = "backup.txt";

//---- this must be the same as the one you used for backup.
$structure_only = false;

//---- instantiating object.
$backup = new SQLBackup($db_user,
                       
$db_pass,
                       
$db_name,
                       
$db_host,
                       
$output,
                       
$structure_only);

//---- calling the backup method finally creats a file with the name specified in $output
// and stors everythig so you can copy the file anywhere you want. This file will be
// restored with another method of this class named "restore" that is described in
// example-backup.php
$backup->restore();
?>