Not sure if I can do this or not
but
how to take a CSV file from a URL and display it in a webpage.
Only displaying 4, 6, 8, 11 fields each line
in reverse (lastest ontop or first)
$row = 1;
$handle = fopen("123456.csv", "r");
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>\n";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "\n";
}
}
fclose($handle);