PHP Classes

File: server2/example.php

Recommend this page to a friend!
  Classes of Bharat Parmar   PHP MySQL Database Synchronize   server2/example.php   Download  
File: server2/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: 464 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 for server2.
AUTHOR : Bharat Parmar
VERSION : 1.0
CREATED DATE : 08-12-2016

*/


if(isset($_POST['table_name']) && $_POST['table_name']!=""){
    @include(
"class/server2.class.php");
   
$server2 = new server2();
   
$output = $server2->table_update($_POST);
   
print_r($output);
    exit;
} else {
    echo
"Parameter Missings.";
    exit;
}

?>