Originally posted here by Owmen
I found a way of doing just what he whanted but i have yet, another problem.

What i did was the Include again, but this time iv chanded the quote.txt file and made HTML code inside to insert <br><br> after each line so that evrything looks nice and pretty, the damm problem is that the boot has to had after each quote ppl make on the IRC channel <br><br> to the end of the frase automaticly.
You don't need to do that, leave it as newlined file ends.

PHP Code:
$quotes=file_get_contents("quotes.txt");
$arr split(PHP_EOL$quotes);
for (
$i=0$i<sizeof($arr); $i++)
{
  echo 
$arr[$i]."<br>".PHP_EOL;

Almost the same, but more portable, and faster than fopen/fgets.