Result Size: 625 x 571
<!DOCTYPE html>
<html>
<body>

<?php
$file = fopen("contacts.csv","r");
while(! feof($file))
  {
  print_r(fgetcsv($file));
  }
fclose($file);
?>


</body>
</html>