PHP Classes

File: server1/includes/config.php

Recommend this page to a friend!
  Classes of Bharat Parmar   PHP MySQL Database Synchronize   server1/includes/config.php   Download  
File: server1/includes/config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP MySQL Database Synchronize
Synchronize MySQL databases tables between servers
Author: By
Last change:
Date: 7 years ago
Size: 547 bytes
 

Contents

Class file image Download
<?php

/*
FILE NAME : config.php
LOCATION : includes/config.php
BASIC DETAILS : This file includes details about the database connections and basic settings.
AUTHOR : Bharat Parmar
VERSION : 1.0
CREATED DATE : 08-12-2016

*/

//DATABASE DETAILS
define("HOST","localhost");
define("DBNAME","htispl_dms_demo");
define("DBUSER","root");
define("DBPASSWORD","");


// SERVER URL WHERE YOU WANT TO SYCN DATABASE
define("SYNC_URL","http://localhost/bharat/git/syncdb/server2/example.php");

//SET TIMEZONE
date_default_timezone_set("Asia/Kolkata");
?>