簡體   English   中英

PHP / MYSQL:通過php將csv文件導入到mysql表中

[英]PHP/MYSQL: Importing csv files through php into a mysql table

我一直在嘗試從此站點找到的代碼: 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> 

任何幫助將不勝感激。 謝謝

我嘗試了另一個最初使用的代碼,現在可以正常工作:

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; 

} 


}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM