1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
|
<?php
$content = file_get_contents("your_csv.csv");
if (!$content){
die("File could not be read");
}
for (explode(PHP_EOL, $content) as $row){
for (explode(";", $row) as $item){
// Item ausgeben oder sonst was damit machen
}
}
?> |