On the BBS i am making, I save the text being posted to a .txt file. When that .txt file is included in the .php file of the BBS, all the line breaks are gone. And everything is just stuck together in a single line. Is there a quick fix for this?
Hi,
use this (I assume that posted file is got as $my_string variable)
$my_string=str_replace("\n","<br>",$my_string);
Kaan ERDEMIR
nl2br($my_string) will do the same
Great! worked perfectly!!