<?php
  
  $handle = fopen("students.csv", "r");
  while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
    var_dump($data);
  }

?>
