how do you make it so in a text box when you make a new line it will also make a new line when it is printed out
sumot to do with \n to <br>
use
$variable = "hello\nworld"; $variable = nl2br($variable); print $variable; outputs "hello<br>world";
Jamie