hi,
on my site i use a song submission script that means someone types in song, author, their name and email and it adds it to a text file using the normal fwrite command. It is read using:
<?
$lines = file("songs.txt");
echo join($lines,"");
?>
Is it possible to store/read the file so that the latest submission is at the top of the page rather than having to scroll down to read it?
Thanks
Rob