我正在尝试使用 PHP 脚本将条目从文本文件添加到我的数据库表中。文本文件包含 2000 行,我希望每一行都是数据库表中的一个条目。这是我的代码。它运行良好,但没有任何内容添加到表中。
<?php
$link = new mysqli('xxx.xxx.xxx.xx', 'xxxxxx', 'xxxxxxxx', 'xxxxxxxxxxx');
if ($link->connect_errno) {
die('Failed to connect to MySQL: (' . $mysqli->connect_errno . ') ' . $mysqli->connect_error);
}
$filename = 'serials.txt';
$file = file($filename);
foreach($file as $line) {
$result = $link->query("INSERT INTO mytable SET serial=$line");
}
?>