Skip to content

Instantly share code, notes, and snippets.

@osrecio
Created August 12, 2013 09:40
Show Gist options
  • Save osrecio/6209544 to your computer and use it in GitHub Desktop.
Save osrecio/6209544 to your computer and use it in GitHub Desktop.
Read CSV - (PHP)
<?php
$row = 0;
$j = 1; // Linea por la que quieres empezar
$file = "name.txt"; //Nombre del fichero
if (($handle = fopen($file, "r")) !== FALSE) {
while (($data = fgetcsv($handle, ",")) !== FALSE) {
print_r($data);
$j++;
$row++;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment