-2

我正在尝试使用 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");
 }
?>
4

1 回答 1

2
  1. 打印错误信息
  2. 转义数据
<?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='"
            .$link->real_escape_string($line)."'");
   if($link->errno) echo($link->errno.": ".$link->error);
 }
?>
于 2013-07-15T15:13:51.343 回答