Quantcast
Channel: ExeOutput for PHP - G.D.G. Software Forum
Viewing all articles
Browse latest Browse all 1024

Restore mysql backup file

$
0
0

@Krokus wrote:

Hi, is it possible to restore a backup file of the mysql database previously saved in text format?

I use this function that work fine but in exeoutput i do not have result.

Blockquote
$link = mysqli_connect(“localhost”, “root”, “password”, “_db_name”);
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$query = file_get_contents($path_txt_file);
mysqli_multi_query($link, $query);
mysqli_close($link);

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 1024