Reputation: 169
Need to add an extra line to skip the first line with headers on csv file. but i dont know from where to start.
<?php
if(isset($_POST["submit"]))
{
$host="localhost"; // Host name.
$db_user="root"; //mysql user
$db_password=""; //mysql pass
$db='local'; // Database name.
$conn=mysql_connect($host,$db_user,$db_password) or die (mysql_error());
mysql_select_db($db) or die (mysql_error());
echo $filename=$_FILES["file"]["name"];
$ext=substr($filename,strrpos($filename,"."),(strlen($filename)-strrpos($filename,".")));
$file = fopen($filename, "r");
$handle = fopen("$filename", "r");
while (($data = fgetcsv($handle, 100000, ",")) !== FALSE)
{
$import="INSERT into customers(fname,lname,company,address,city,state,country,postal_code,phone,email) values('$data[0]','$data[1]','$data[2]','$data[3]','$data[4]','$data[5]','$data[6]','$data[7]','$data[8]','$data[9]')";
mysql_query($import) or die(mysql_error());
}
fclose($handle);
print "Import done";
}
else
{
print "<form enctype='multipart/form-data' method='post'>";
print "Type file name to import:";
print "<input type='file' name='file' id='file'>";
print "<input type='submit' name='submit' value='submit'></form>";
}
?>
Any help is apreciated.
Upvotes: 0
Views: 5998
Reputation: 197767
Consider using the SplFileObject
to read CSV files, it supports iteration better, e.g. in conjunction with the standard SPL LimitIterator
this is a piece of cake:
$file = new SplFileObject($filename);
$file->setFlags(SplFileObject::READ_CSV);
$it = new LimitIterator($file, 1);
foreach($it as $data) {
$mask = "INSERT INTO customers (fname, lname, company, address, city, state, country, postal_code, phone, email) values('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')";
$sql = vsprintf($mask, $data);
mysql_query($sql) or die(mysql_error());
}
Additionally please notice:
Please, don't use
mysql_*
functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial.
Upvotes: 14
Reputation: 16989
Simple count can work
$count = 0;
while (($data = fgetcsv($handle, 100000, ",")) !== FALSE)
{
if($count)
{
$import="INSERT into customers(fname,lname,company,address,city,state,country,postal_code,phone,email) values('$data[0]','$data[1]','$data[2]','$data[3]','$data[4]','$data[5]','$data[6]','$data[7]','$data[8]','$data[9]')";
mysql_query($import) or die(mysql_error());
}
$count++;
}
Upvotes: 0
Reputation: 1416
fgetcsv($handle, 100000, ",")
before while loop
$file = fopen($filename, "r");
$handle = fopen("$filename", "r");
$headers = fgetcsv($handle, 100000, ","); //gran headers,
// you can do additional check to see if headers are grabbed or is the exist or if it is first lien of data (depends if you are 100% sure that headers will exist)
//and if they are not, reset the handle
// rewind($handle);
while (($data = fgetcsv($handle, 100000, ",")) !== FALSE)
{
$import="INSERT into customers(fname,lname,company,address,city,state,country,postal_code,phone,email) values('$data[0]','$data[1]','$data[2]','$data[3]','$data[4]','$data[5]','$data[6]','$data[7]','$data[8]','$data[9]')";
mysql_query($import) or die(mysql_error());
}
fclose($handle);
print "Import done";
}
else
{
print "<form enctype='multipart/form-data' method='post'>";
print "Type file name to import:";
print "<input type='file' name='file' id='file'>";
print "<input type='submit' name='submit' value='submit'></form>";
}
Upvotes: 2