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 7536255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T06:31:27+00:00 2026-05-30T06:31:27+00:00

I’m now using this code to import csv data into my database.(Thanks to Francis

  • 0

I’m now using this code to import csv data into my database.(Thanks to Francis Avila)

 if (($handle = fopen($source_file, "r")) !== FALSE) {
     $columns = fgetcsv($handle, $max_line_length, ",");
     $esc_columns = array();
     foreach ($columns as &$column) {
         $column1 = str_replace(".","",$column);
         $column = preg_replace("/\s*,\s*/",",",$column1);
         $esc_columns[] = escapeSqlName($column);
     }

     $esc_columns[] = escapeSqlName('custgroup');
     $esc_columns[] = escapeSqlName('user_id');
     $esc_columns[] = escapeSqlName('mylabel');

     $x = preg_replace("/\s*,\s*/", ",", implode(',',$esc_columns));
     $xx = str_replace(' ', '', $x);

     $sqlsmttempl = 'INSERT DELAYED INTO %s (%s) VALUES (%s)';
     $sqlsmt = sprintf($sqlsmttempl,
         escapeSqlName($target_table), 
         $xx, 
         implode(',',array_fill(0, count($esc_columns), '?')) 
);


     $db = new PDO("mysql:host=localhost;dbname=Data;","root",""); 

     $insert = $db->prepare($sqlsmt); 

     while (($data = fgetcsv($handle, $max_line_length, ",")) !== FALSE) {
    while(count($data) < count($columns)) {
        $data[] = NULL;
    }

    $data[] = $_POST['custgroup'];
    $data[] = $_POST['user_id'];
    $data[] = $_POST['mylabel'];

    $insert->execute($data); 
}

I faced some problem in header blank space before , so I added

     $x = preg_replace("/\s*,\s*/", ",", implode(',',$esc_columns));
     $xx = str_replace(' ', '', $x);

so now blank space will be ignored.

But how about blank space in data?(just in front and end of comma) . I tried trim($data) , but I know it is wrong.

And I have no clue how to handle the upload when the header contain other extra commas , such as :

Name,Address,Phone,,,,,(wrong) instead of just Name,Address,Phone(correct)

Any advice?Thanks in advance.

  • 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-30T06:31:28+00:00Added an answer on May 30, 2026 at 6:31 am

    The problem can be solved by using rtrim ( string $str [, string $charlist ] ):

    $x = preg_replace("/\s*,\s*/", ",", implode(',',$esc_columns));
    $xx = str_replace(' ', '', $x);
    $xx = rtrim($xx,',');
    

    For triming text in php you can use : ltrim (left trim), trim (trim on both sides), rtrim (right trim). All accept parameters ( string $str [, string $charlist ] ) $str – input string $charlist – string to be trimed

    $xx = trim($xx); //exclude spaces both sides so for "  text  " => "text"
    $xx = ltrim($xx); //exclude spaces left side so for "  text  " => "text  "
    $xx = rtrim($xx); //exclude spaces right side so for "  text  " => "  text"
    
    $xx = rtrim($xx,','); //adding second parameter ',' will not trim spaces, will trim coma
    

    You cand add many commands as you want:

    $x = preg_replace("/\s*,\s*/", ",", implode(',',$esc_columns));
    $xx = str_replace(' ', '', $x);
    
    $xx = trim($xx); //trim spaces from both sides
    $xx = trim($xx,','); //trim comas from both sides
    

    Note:

    $xx = trim($xx,','); //this is faster (only one function call)
    
    //equivalent with
    $xx = ltrim($xx,',');
    $xx = rtrim($xx,',');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this is what i have right now Drawing an RSS feed into the php,
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am using Paperclip to handle profile photo uploads in my app. They upload
I have some data like this: 1 2 3 4 5 9 2 6
I have this code to decode numeric html entities to the UTF8 equivalent character.
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I'm new to using the Perl treebuilder module for HTML parsing and can't figure

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.