PHP Classes

File: backup.php

Recommend this page to a friend!
  Classes of Aman Kumar Jain   ajDbBackup   ???   Download  
File: ???
Role: Example script
Content type: text/plain
Description: Example file
Class: ajDbBackup
Take a MySQL database backup and send it by e-mail
Author: By
Last change:
Date: 16 years ago
Size: 309 bytes
 

 

Contents

Class file image Download
<?php
include './ajDbBackup.class';
$backup = new ajDbBackup;
$backup->emailTo = "[email protected]";
$backup->emailFrom = "[email protected]";
$backup->host = "mysqlHost";
$backup->user = "mysqlUser";
$backup->password = "mysqlUserPassword";
$backup->dbName = "mysqlDbNameToBeBacked";
$backup->ajMail();
?>