hallo;hallo;hallo
Und selbst wenn es mit dem Editor dann klappt: wenn ich die Daten aus der DB auslese, wird es auch zerhauen... so ne
<?
$test = array('t\344st;t\374st;t\366st','hallo;hallo;hallo');
$Ausgabe = implode("\\n", $test);
$file = fopen("test.csv","w");
fputs($file, $Ausgabe);
fclose($file);
?>
$test = array('täst;tüst;töst','hallo;hallo;hallo');
$Ausgabe = implode("\n", $test);
$file = fopen("test.csv","w");
fputs($file, $Ausgabe);
fclose($file);
Einen Kommentar schreiben: