I have information submitted using a textarea box and I am curious to know how to get the line breaks to be visable when they are displayed as html.
You'll need to convert them to either <p> or <br> tags. Use strreplace().
strreplace("\n", "<p>", $string);
echo nl2br($text);
http://www.phpbuilder.com/manual/function.nl2br.php
-- Rich Rijnders -- Irvine, CA US