Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Ich erstelle in einer PHP Datei eine *.csv ! Klappt alles wunderbar. Wie bekomme ich aber einen Zeilenumbruch hin ?
php -r '$var = hallo; print $var . "\n";'
PHP:$csv .= '1;max;mustermann;---;de,uni;a-1000 \n ';
$csv .= '1;max;mustermann;---;de,uni;a-1000' . "\n";
Tja...http://php.net/manual/de/language.types.string.phpIn der Datei steht dann aber das \n !
Was?Das was du geschrieben hast ist ja für eine normale Ausgabe !