I am entering text into a textarea field and pressing the return key to force a new line. But when the contents of the textarea field is displayed I am seeing the new line html tag <br /> symbol (see below). How do I stop these symbols from displaying and still force a new line?
line one<br />
line two<br />
line three
The HTML code looks like this:
<tr class=bodyTRstyle><td class=labelTDstyle width="469" align="left"><font size="2">Comments</font></td>
<td class=fieldTDstyle width="469">
<textarea name="Comments" class=Comments rows="5" cols="20"><?php echo $Comments?></textarea></td></tr>
thank you in advance for your help.