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

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


</body>
</html>