Berikut ini adalah contoh program untuk menjalankan atau untuk mengimport sql file dengan php.
<?php
$mysqli = new mysqli('host', 'username', 'password', 'database');
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('file .sql nya');
if (!$sql){
die ('Error opening file');
}
echo 'processing file <br />';
mysqli_multi_query($mysqli,$sql);
echo 'done.';
$mysqli->close();
?>
Terima kasih.
0 comments:
Posting Komentar