PHP スクリプトを使用して、テキスト ファイルからデータベース テーブルにエントリを追加しようとしています。テキスト ファイルには 2000 行が含まれており、各行をデータベース テーブルの 1 つのエントリにしたいと考えています。これは私のコードです。正常に実行されますが、テーブルには何も追加されません。
<?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");
}
?>