Hallo,
ich habe ein Problem in PHP... Vielleicht ist es auch nur eine Problematik eines Anfängers :)
Ich habe hier PHP-Script:
<?php
$bands = fopen ("bands.csv", "r");
while ($data = fgetcsv ($bands,1000,";")) {
$num = count ($data);
for ($c=0; $c<$num; $c++) {
print $data[$c] . "<br>";
}
}
fclose ($bands);
?>
Ich lese die Werte aus einer CSV-Datenbank aus...
In der "bands.csv" sind 5 Spalten enthalten, wovon jede
Spalte eine Variable erhalten soll. z.B.
Spalte A = $bandname
Spalte B = $musikstil
Spalte C = $ort
Spalte D = $homesite
Spalte E = $email
Leider habe ich keine Ahnung, ob das möglich ist bzw. wie das geht...
Kann mir jemand helfen?
Danke + Gruß
elBee