PHP Classes

File: server1/example.php

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

Contents

Class file image Download
<?php

/*
FILE NAME : example.php
LOCATION : example.php
BASIC DETAILS : This file is the example file for the database synchronization from server1.
AUTHOR : Bharat Parmar
VERSION : 1.0
CREATED DATE : 08-12-2016

*/
@include("class/server1.class.php");
$server1 = new server1();
$output = $server1->getdbupdate();

echo
"<pre>";
print_r($output);
echo
"</pre>";

?>