Hi all. I have a file called "DEN" on my server. I'm writing to it and can't seem to get the new line to work. Everything prints on one line with a weird charecter where the new line should end.
$stringData = "Floppy Jalopy\n";
fwrite($fh, $stringData);
$stringData = "Pointy Pinto\n";
fwrite($fh, $stringData);
fclose($fh);