I have just created a web application using PHP Mysql I want to install this system in localserver as well as online webserver. But When Not Net Connection it store in local mysql and auto update or synchronize the online mysql data.
Kinly help me How can Is Possible.. I Have just use this but not working.
<form action ='#' method ='post' enctype='multipart/form-data'>
<div class="form-group">
<input type='hidden' class="form-control" value='<?php echo $dbname;?>' name='dbname' required>
</div>
<div class="form-group">
<label>Upload Photograph </label>
<input type="file" name='backup_file'>
</div>
<input type="submit" class="btn btn-primary" value='Restore' name='submit'>
</form>
<?php
include_once('conn.php');
// ------------ Upload Process -------------------------------//
if(isset($_FILES['backup_file']))
{
$file = $_FILES ['backup_file'];
$name1 = $file ['name'];
$type = $file ['type'];
$size = $file ['size'];
$tmppath = $file ['tmp_name'];
if (!is_dir('upload'))
{
mkdir('upload');
}
if( !move_uploaded_file ($tmppath, 'upload/'.$name1))
{
Echo ("Error In File Upload");
}
# UPDATING PROCESS STRAT HERE #
$mysqli = new mysqli('localhost', 'database_user', 'database_password', 'dbname');
if (mysqli_connect_error()) {
die('Connect Error (' . mysqli_connect_errno() . ') '
. mysqli_connect_error());
}
echo 'Success... ' . $mysqli->host_info . "<br />";
echo 'Retrieving dumpfile' . "<br />";
$sql = file_get_contents('upload/'.$name1);
if (!$sql){
die ('Error opening file');
}
echo 'processing file <br />';
mysqli_multi_query($mysqli,$sql);
echo "<h4> Backup Updated Successfully. </h4>";
echo "<h2> Thanks for Using ..GURU DAKSHINA</h2>";
$mysqli->close();
}
?>