Welcome Guest, Not a member yet? Register   Sign In
Import CSV file - Problem...
#2

[eluser]gon[/eluser]
I would do this:

Code:
$content = file("/path/to/file.csv");
array_shift($content);  // skip first line if needed
foreach ($content as $line) {
      list ($id, $name, $surname, $email) = split(";", $line);
      $model->db->insert("table_name", array('id' => $id,
                                             'name' => $name,
                                             'surname' => $surname,
                                             'email' => $email);
  

}


Messages In This Thread
Import CSV file - Problem... - by El Forum - 02-27-2008, 06:25 AM
Import CSV file - Problem... - by El Forum - 02-27-2008, 08:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB