Home > Backend Development > PHP Tutorial > php import csv to mysql database

php import csv to mysql database

WBOY
Release: 2016-07-25 08:55:00
Original
1104 people have browsed it
复制代码

2,执行页面insertdb.php

  1. session_start();

  2. header("Content-type:text/html;charset:utf-8");

  3. //全局变量

  4. $file=$_FILES['filename'];
  5. $max_size="2000000"; //最大文件限制(单位:byte)
  6. $fname=$file['name'];
  7. $ftype=strtolower(substr(strrchr($fname,'.'),1));
  8. //文件格式
  9. $uploadfile=$file['tmp_name'];
  10. if($_SERVER['REQUEST_METHOD']=='POST'){
  11. if(is_uploaded_file($uploadfile)){
  12. if($file['size']>$max_size){
  13. echo "Import file is too large";
  14. exit;
  15. }
  16. if($ftype!='csv'){
  17. echo "Import file type is error";
  18. exit;
  19. }
  20. }else{
  21. echo "The file is not empty!";
  22. exit;
  23. }
  24. }

  25. require("./conn.php"); //连接mysql数据库

  26. $row=0;
  27. $filename=$file['tmp_name'];
  28. $handle=fopen($filename,'r');
  29. while(!feof($handle) && $data=fgetcsv($handle,1000,',')){
  30. $arr_result=array();
  31. if($row==0){
  32. $row++;
  33. continue;
  34. }
  35. if($row>0 && !empty($data)){
  36. $num=count($data);
  37. for($i=0;$i<$num;$i++){
  38. array_push($arr_result,$data[$i]);
  39. }

  40. $name = iconv('gb2312','utf-8',$arr_result[1]);

  41. $sex = iconv('gb2312','utf-8',$arr_result[2]);
  42. $sql="insert into student(typeId,name,sex,age) value($arr_result[0],'$name','$sex',$arr_result[3])";
  43. //echo $sql;
  44. mysql_query("set names utf8");
  45. $result=mysql_query($sql);
  46. if($result){
  47. echo "插入成功!!!";
  48. }else{
  49. echo "插入失败!!!";
  50. }
  51. }
  52. $row++;
  53. }
  54. fclose($handle);
  55. ?>

复制代码


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template