Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7080611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:49:00+00:00 2026-05-28T06:49:00+00:00

Possible Duplicate: Read a file from line X to line Y? I know this

  • 0

Possible Duplicate:
Read a file from line X to line Y?

I know this has been covered before, but all the answers I have found are related to the LOAD DATA INFILE method, which uses IGNORE 1 LINES to ignore the header, I have tried that with my code below but it just throw an error.

    <?php
    //database connect info here

    //check for file upload
    if(isset($_FILES['csv_file']) && is_uploaded_file($_FILES['csv_file']['tmp_name'])){

        //upload directory
        $upload_dir = "./csv";

        //create file name
        $file_path = $upload_dir . $_FILES['csv_file']['name'];

        //move uploaded file to upload dir
        if (!move_uploaded_file($_FILES['csv_file']['tmp_name'], $file_path)) {

            //error moving upload file
            echo "Error moving file upload";

        }

        //open the csv file for reading
        $handle = fopen($file_path, 'r');


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

            //Access field data in $data array ex.
                        $salutation = $data[0];
                        $leadname = $data[1];                           
                        $businessname = $data[2];
                        $address = $data[3];
                        $town = $data[4];
                        $county = $data[5];
                        $postcode = $data[6];
                        $phone = $data[7];                          
                        $email = $data[8];
                        $gasoiluser = $data[9];
                        $dervuser = $data[10];
                        $kerouser = $data[11];
                        $annualconsgasoil = $data[12];
                        $annualconsderv = $data[13];
                        $annualconskero = $data[14];
                        $gasoilmargin = $data[15];
                        $dervmargin = $data[16];
                        $keromargin = $data[17];
                        $fueldetails = $data[18];   
                        $lubesdetails = $data[19];  
                        $othernotes = $data[20];                            
                        $sentletterday = $data[21];
                        $sentlettermonth = $data[22];
                        $sentletteryear = $data[23];
                        $sentpostcardday = $data[24];
                        $sentpostcardmonth = $data[25];
                        $sentpostcardyear = $data[26];                          
                        $sentquoteday = $data[27];
                        $sentquotemonth = $data[28];
                        $sentquoteyear = $data[29];
                        $lastvisitedday = $data[30];
                        $lastvisitedmonth = $data[31];
                        $lastvisitedyear = $data[32];
                        $receivegasoilmailinglist = $data[33];
                        $receivedervmailinglist = $data[34];
                        $receivekeromailinglist = $data[35];
                        $gasoilmailinglist = $data[36];
                        $dervmailinglist = $data[37];
                        $keromailinglist = $data[38];   
                        $mailtype = $data[39];                      
                        $createdby = $data[40];

            echo 'Import Successful : ';
            echo $leadname;
            echo '<br/>';

            //Use data to insert into db
            $sql = sprintf("INSERT IGNORE hqfjt_chronoforms_data_addupdatelead (salutation,leadname,businessname,address,town,county,postcode,phone,email,gasoiluser,dervuser,kerouser,annualconsgasoil,annualconsderv,annualconskero,gasoilmargin,dervmargin,keromargin,fueldetails,lubesdetails,othernotes,sentletterday,sentlettermonth,sentletteryear,sentpostcardday,sentpostcardmonth,sentpostcardyear,sentquoteday,sentquotemonth,sentquoteyear,lastvisitedday,lastvisitedmonth,lastvisitedyear,receivegasoilmailinglist,receivedervmailinglist,receivekeromailinglist,gasoilmailinglist,dervmailinglist,keromailinglist,mailtype,createdby) VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
                        mysql_real_escape_string($salutation),
                        mysql_real_escape_string($leadname),                            
                        mysql_real_escape_string($businessname),
                        mysql_real_escape_string($address),
                        mysql_real_escape_string($town),
                        mysql_real_escape_string($county),
                        mysql_real_escape_string($postcode),
                        mysql_real_escape_string($phone),                           
                        mysql_real_escape_string($email),
                        mysql_real_escape_string($gasoiluser),
                        mysql_real_escape_string($dervuser),
                        mysql_real_escape_string($kerouser),
                        mysql_real_escape_string($annualconsgasoil),
                        mysql_real_escape_string($annualconsderv),
                        mysql_real_escape_string($annualconskero),
                        mysql_real_escape_string($gasoilmargin),
                        mysql_real_escape_string($dervmargin),
                        mysql_real_escape_string($keromargin),
                        mysql_real_escape_string($fueldetails), 
                        mysql_real_escape_string($lubesdetails),    
                        mysql_real_escape_string($othernotes),                          
                        mysql_real_escape_string($sentletterday),
                        mysql_real_escape_string($sentlettermonth),
                        mysql_real_escape_string($sentletteryear),
                        mysql_real_escape_string($sentpostcardday),
                        mysql_real_escape_string($sentpostcardmonth),
                        mysql_real_escape_string($sentpostcardyear),                            
                        mysql_real_escape_string($sentquoteday),
                        mysql_real_escape_string($sentquotemonth),
                        mysql_real_escape_string($sentquoteyear),
                        mysql_real_escape_string($lastvisitedday),
                        mysql_real_escape_string($lastvisitedmonth),
                        mysql_real_escape_string($lastvisitedyear),
                        mysql_real_escape_string($mailtype),
                        mysql_real_escape_string($receivegasoilmailinglist),
                        mysql_real_escape_string($receivedervmailinglist),
                        mysql_real_escape_string($receivekeromailinglist),
                        mysql_real_escape_string($gasoilmailinglist),
                        mysql_real_escape_string($dervmailinglist),
                        mysql_real_escape_string($keromailinglist),                         
                        mysql_real_escape_string($createdby)
                        );
            mysql_query($sql) or (mysql_query("ROLLBACK") and die(mysql_error() . " - $sql"));


        }


        //delete csv file
        unlink($file_path);
    }
    ?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:49:01+00:00Added an answer on May 28, 2026 at 6:49 am

    Just skip one line manually by reading it from the file before the loop:

    //open the csv file for reading
    $handle = fopen($file_path, 'r');
    
    // read the first line and ignore it
    fgets($handle); 
    
    while (($data = fgetcsv($handle, 1000, ',')) !== FALSE) {
      // do your thing
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How can I read lines from the end of file in Perl?
Possible Duplicate: How do I read a resource file from a Java jar file?
Possible Duplicate: File to byte[] in Java I want to read data from file
Possible Duplicate: How to read a file from bottom to top in Ruby? In
Possible Duplicate: Read data from a file individually and multiply the two columns in
Possible Duplicate: how to read images from xml file? how to get images from
Possible Duplicate: What is a ‘Closure’? I read more and more about closures but
Possible Duplicate: What’s with the love of dynamic Languages I have already read this
Possible Duplicate: How to read a text file reversely with iterator in C# I
Possible Duplicate: reading a specific file from sdcard in android I'm trying to make

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.