1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
|
<?php
// open the .sql file
$fp = @fopen("mysql.sql", "r");
$file = fread($fp, 80000);
fclose($fp);
$lines = explode(';', $file); // split the .sql into sepearte queries
$cnt = count($lines); // count array elements
// database connection string
mysql_connect("localhost","root");
// loop each query and execute
for($j=0; ($j<$cnt-1); $j++) {
if(!mysql_query($lines[$j])) {
// echo any errors
echo "Error on line $j of Query:<br>";
echo $lines[$j]."<br><Br>";
die;
}
}
// show confirmation
echo "Done";
?>
|