Hallo,
bin NEU hier.
Ich hoffe mir kann hier geholfen werden.
Mein Problem ist es, eine CSV Datei zu lesen und sie dann anzupassen
anpassen: Tabelle-Rahmen erstellen und in der Zelle Farbig darstellen, wenn Spalte TESt beinhaltet soll Farbig angezeigt werden
PHP
<?php
// Konfiguration
$csvFile = "daten.csv";
$firstRowHeader = false;
$maxRows = 10;
// Daten auslesen und Tabelle generieren
$handle = fopen($csvFile, "r");
$counter = 0;
while(($data = fgetcsv($handle, 999, ";")) && ($counter < $maxRows)) {
print "<td>$cell</td>";
echo "<tr>";
if(($counter == 0) && $firstRowHeader) {
echo "<th>".$data[0]."</th>";
echo "<th>".$data[1]."</th>";
echo "<th>".$data[2]."</th>";
echo "<th>".$data[3]."</th>";
echo "<th>".$data[4]."</th>";
echo "<th>".$data[5]."</th>";
echo "<th>".$data[6]."</th>";
echo "<th>".$data[7]."</th>";
echo "<th>".$data[8]."</th>";
echo "<th>".$data[9]."</th>";
echo "<th>".$data[10]."</th>";
}
else {
echo "<th>".$data[0]."</th>";
echo "<th>".$data[1]."</th>";
echo "<th>".$data[2]."</th>";
echo "<th>".$data[3]."</th>";
echo "<th>".$data[4]."</th>";
echo "<th>".$data[5]."</th>";
echo "<th>".$data[6]."</th>";
echo "<th>".$data[7]."</th>";
echo "<th>".$data[8]."</th>";
echo "<th>".$data[9]."</th>";
echo "<th>".$data[10]."</th>";
}
$counter++;
}
fclose($handle);
?>
Alles anzeigen
Wie müsste ich mein Code so ändern, dass mir zellen