oh, and i know i can use something like
<?
$row = 1;
$fp = fopen ("data.csv","r");
while ($data = fgetcsv ($fp, 1000, ",")) {
$num = count ($data);
$row++;
for ($c=0; $c<$num; $c++) {
print $data[$c] . "<br>";
}
}
fclose ($fp);
?>
but that's not what i want, since i want to make the file linkable ..that is..so when it prints out the actual name of the file, a user will be able to click on it and view it.