Yes newbie here,
I have a text field that has several paragraphs in it. This info is entered and edited in textarea on forms of course, and when done so looks fine. I want to simply display the info in the same nicely formatted structure it was entered/edited. Currently the code below for example yields 4 paragraphs as 4 long lines never wrapping. How do I display data with the same format as it was entered. thanks.
print "<tr>\n";
print "<td>\n";
echo "<p><h3>$title</h3></p>\n";
print "</td>\n";
print "<tr>\n";
print "<td>\n";
print "<p><pre>$info</pre></p>\n";
print "</td>\n";
print "</tr>\n";