hello, i have a bunch of textfiles, with linebreaks.
$filename = "quotes.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
echo $contents;
that just displays the file ok but without the linebreaks, how would i make it so it finds the line linebreaks, and displays it properly?
any help is greatful. thanks.