Skip to content

Instantly share code, notes, and snippets.

@peter-mcconnell
Created January 14, 2014 16:30
Show Gist options
  • Select an option

  • Save peter-mcconnell/8421161 to your computer and use it in GitHub Desktop.

Select an option

Save peter-mcconnell/8421161 to your computer and use it in GitHub Desktop.
PHP Loop csv file
<?php
$file = fopen('data.csv', 'r');
while ($row = fgetcsv($file)) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment