Hi ,how do I read a remote CSV file on a network running Red Hat boxes on php eg $link= fopen(the pathname) .
<?
$F = fopen("Http://blah.com/the/real/file","r");
while($Data = fgetcsv($F,1000,",")) { // What ever you are doing with the csv $Data is an array of the columns. echo implode("|",$Data)."\n";
} fclose($F); ?>