<?php
$file_handle = fopen("info.csv", "r");
while (!feof($file_handle) ) {
$data = fgetcsv($file_handle, 1024);
echo"$data[0] . $data[1]";
}
fclose($file_handle);
?>
I want to get the specific cell value (2,2) from csv in php, how can i do that ? Thank you very much!