1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php $file = "650446770.csv"; $lines = file($file); // Two dimensional array $data = array(); $i = 0; foreach($lines as $value) { // Values delimited by \t (tab) as separate array values $data[$i] = explode("\t", $value); // Increase the line index $i++; } echo "Tenth Row: ".$data[10][0]."<br />"; echo "Eleventh Row: ".$data[11][0]."<br />"; echo "Twelfth: ".$data[12][0]."<br /><br />"; ?> |
