PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Carlos Manuel Rivera Atencio   PHP Auto Backup MySQL to File   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Config file for autobackup class
Class: PHP Auto Backup MySQL to File
Manage MySQL backup files generated with mysqldump
Author: By
Last change:
Date: 9 years ago
Size: 468 bytes
 

Contents

Class file image Download
<?php
   
/**
    *
        File: config.php
        Author: Carlos Rivera
        email: itzkrlos@gmail.com
        License: BSD
    */

    //DB SETTINGS
   
define("DB_HOST", "localhost"); //Servidor DB
   
define("DB_USER", "root"); //Usuario DB
   
define("DB_PASS", "1234"); //password DB
    
define("DB_NAME", "php"); //Nombre Db

     //BACKUP PATH
    
define("BACKUP_PATH", dirname(__FILE__)."\\backups\\");

    
//BASIC DATA
    
define("AUTOR", "Carlos Rivera");
    
define("MAX_DAYS", "0");
?>