For some reason the \n doesnt produce a new line
<?php
$fromFlash = "hey";
$filename = $fromFlash . ".txt";
$q =rand(9 , 99999);
$writethis = $q . "\n";
$hand = fopen($filename, 'a');
fwrite($hand, $writethis);
fclose($hand);
my txt file has these square things and not a new line
?>