City of Madison East Rain Gage
Madison East Rain Gage
'."\n";
// Loop through each row in the CSV file
while($csv_line = fgetcsv($fp)) {
// Start a row
$display .= '';
// Loop through the columns in the CSV file
foreach ($csv_line AS $col_value) {
$display .= '| '.$col_value.' | ';
}
// Close the row
$display .= "
\n";
}
// Close the table
$display .= '';
// Close the file
fclose($fp) or die("can't close file");
?>