I have a form that has a text box, i.e. text area that takes 200 characters
max. When I use my update script and it brings up the information in the
database, it displays as a single line. How can I keep the same format
of a box, instead of single line when viewing the database data for
updating?
This is how I'm calling the information into the box
<tr>
<td width="100%">
<font face="Arial" size="2">Additi onal Comments/Counties Covered</font></td>
<td width="100%"> <input type="textarea" size="80" name="ud_commen ts"
value="<? echo "$comments"?>"> </td>
</tr>
max. When I use my update script and it brings up the information in the
database, it displays as a single line. How can I keep the same format
of a box, instead of single line when viewing the database data for
updating?
This is how I'm calling the information into the box
<tr>
<td width="100%">
<font face="Arial" size="2">Additi onal Comments/Counties Covered</font></td>
<td width="100%"> <input type="textarea" size="80" name="ud_commen ts"
value="<? echo "$comments"?>"> </td>
</tr>
Comment