Home  >  Article  >  Backend Development  >  import text to mysql how to import data from text to mysql

import text to mysql how to import data from text to mysql

WBOY
WBOYOriginal
2016-07-29 08:33:501116browse

In access, you can easily import data in text into tables. In mysql, it is not so convenient, but it is actually very simple.
First process the data records by lines and separate them with specific characters such as: ","
The record format is:
aaa,bbb,ccc,ddd,eee
fff,ggg,hhh,iii,jjj,kkk
That's it, create it loaddate.php
$hostname="localhost";
$username="yourname";
$password="yourpwd";
$dbname="yourdb";
mysql_connect($hostname,$username,$ password);
mysql_select_db("$dbname");
$mydate=file("yourdate.txt");
$n=count($mydate);
for($i=0;$i<$n;$ i++){
$date=explode(",",$mydate[$i]);
$str="insert into ip values('$date[0]','$date[1]','$date [2]','$date[3]','$date[4]')"; //
mysql_query($str);
}
mysql_close();
echo "ok!";
?>
Run loaddate.

The above introduces how to import text into mysql and how to import data from text to mysql, including the content of importing text into mysql. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn