PHP / MYSQL:通过php将csv文件导入到mysql表中

时间:2016-10-21 04:59:06

标签: php mysql csv

我一直在尝试使用此网站上的代码:https://www.johnboyproductions.com/blog/tutorial-import-a-csv-file-using-php-and-mysql

它在本地完美适用于我,但是当我在现场网站上尝试代码时。它表示数据已导入但未反映在数据库中。我正在添加以下代码:

if ($_FILES[csv][size] > 0) { 

//get the csv file 
$file = $_FILES[csv][tmp_name]; 
$handle = fopen($file,"r"); 

//loop through the csv file and insert into database 
do { 
    if ($data[0]) { 
        mysqli_query("INSERT INTO tablename VALUES 
            ( 
                '".addslashes($data[0])."', 
                '".addslashes($data[1])."'
            ) 
        "); 
    } 
} while ($data = fgetcsv($handle,1000,",","'")); 
// 

//redirect 
header('Location: filename.php?success=1'); die; 

} 

这是功能部分,我将发布以下表单部分:

            <form action="" method="post" enctype="multipart/form-data" name="form1" id="form1"> 
            Choose your file: <br /> 
            <input name="csv" type="file" id="csv" /> 
            <input type="submit" name="Submit" value="Submit" /> 
            </form> 

任何帮助将不胜感激。感谢

1 个答案:

答案 0 :(得分:0)

我尝试了另一个最初使用的代码,现在正在使用:

if(isset($_POST['Submit']))
{

if ($_FILES['csv']['size'] > 0)
{ 

//get the csv file 
$file = $_FILES['csv']['tmp_name']; 
$handle = fopen($file,"r"); 


$firstRow = true;

while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
{

if($firstRow) { $firstRow = false; }
else {

 $str="INSERT INTO tablename VALUES 
            ('' ,
                '".addslashes($data[0])."', 
                '".addslashes($data[1])."'
            ) ";




            $result = mysqli_query($connection,$str);
            if($result)
                $cnt++;
}
}

fclose($handle);

//redirect 
// header('Location: filename.php?success=1'); die; 

} 


}