Hi,
Wenn nun eine CSV Datei mit genau dieser Struktur geladen wird, schlägt die Prüfung fehl. Es kommt immer die Ausgabe "CSV Struktur stimmt nicht"
//erste Zeile
if( $csv_line[0] == "Spalte1" AND $csv_line[1] == "Spalte2" AND $csv_line[2] == "Spalte3" ){
Na dann kontrolliere vor dieser Zeile als erstes mal, ob diese Variablen \*tatsächlich\* diese Werte enthalten:
`var_dump($csv_line[0], $csv_line[0] == "Spalte1", $csv_line[1], $csv_line[1] == "Spalte2", $csv_line[2], $csv_line[2] == "Spalte3");`{:.language-php}
Was kommt da raus?
MfG ChrisB
--
Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/