我有一个像这样的文本文件名为ernakulam.txt,其内容如下:
name1
name2
name3
name4
name5
我想将此值插入名为places的Mysql数据库表中。 Mysql表有这样的字段:
dist_id | name
_________|______
|
|
在此表中,field1(dist_id)对于所有行应该相同。 dist_id值是6.如何从文本文件中读取这些名称并使用php插入Mysql表?
答案 0 :(得分:2)
<?php
$file = '/path/to/ernakulam.txt';
$file_content = file_get_contents($file);
$names = explode("\n", $file_content);
等等