when i retrieve data from the mysql database (text field)the text scrolls straight across the screen. Is there an easy way to have the text start at the next line when the end of the column is reached? Please let me know if you need more info.
this is the input text box
<tr>
<td align="center" width="1" VALIGN="TOP">
<p align="left"><b>INFORMATION:</p>
<p> </b></td>
<td align="center" width="1043" colspan="4">
<p align="left">
<textarea name="information" cols="80" rows="8" wrap="virtual">paste text here</textarea></td>
</tr>
php/html to output the information to a page
***note variable7=information field in db
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<tr>
<td style="border-bottom-style: solid; border-bottom-width: 1">
<p align="center">RECORD SELECTED</td>
</tr>
</table>
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<tr> <td><b>AUTHOR:</b></td>
<?php print ("<td>$variable2</td>"
; ?>
</tr>
<tr>
</tr>
<tr> <td><b>DATE:</b></td>
<?php print ("<td>$variable3</td>"
; ?>
</tr>
<tr>
</tr>
<tr> <td><b>CLLI:</b></td>
<?php print ("<td>$variable4</td>"
; ?>
</tr>
<tr>
</tr>
<tr> <td><b>CATEGORY:</b></td>
<?php print ("<td>$variable5</td>"
; ?>
</tr>
<tr>
</tr>
<tr> <td VALIGN="TOP"><b>TITLE:</b></td>
<?php print ("<td>$variable6</td>"
; ?>
</tr>
<tr>
</tr>
</table>
<table>
<tr> <td VALIGN="TOP" width="20"><b>INFORMATION:</b></td>
</tr>
<tr> <td></td>
<?php print ("<td width='75%'><pre>$variable7</pre></td>"
; ?>
</tr>
<tr> <td VALIGN="TOP"><b>LOGS:</b></td>
</tr>
<tr> <td></td>
<?php print ("<td><pre>$variable8</pre></td>"
; ?>
</tr>
</table>
<table>
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<hr></hr>
</table>
</body>
this is the input text box
<tr>
<td align="center" width="1" VALIGN="TOP">
<p align="left"><b>INFORMATION:</p>
<p> </b></td>
<td align="center" width="1043" colspan="4">
<p align="left">
<textarea name="information" cols="80" rows="8" wrap="virtual">paste text here</textarea></td>
</tr>
php/html to output the information to a page
***note variable7=information field in db
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<tr>
<td style="border-bottom-style: solid; border-bottom-width: 1">
<p align="center">RECORD SELECTED</td>
</tr>
</table>
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<tr> <td><b>AUTHOR:</b></td>
<?php print ("<td>$variable2</td>"

</tr>
<tr>
</tr>
<tr> <td><b>DATE:</b></td>
<?php print ("<td>$variable3</td>"

</tr>
<tr>
</tr>
<tr> <td><b>CLLI:</b></td>
<?php print ("<td>$variable4</td>"

</tr>
<tr>
</tr>
<tr> <td><b>CATEGORY:</b></td>
<?php print ("<td>$variable5</td>"

</tr>
<tr>
</tr>
<tr> <td VALIGN="TOP"><b>TITLE:</b></td>
<?php print ("<td>$variable6</td>"

</tr>
<tr>
</tr>
</table>
<table>
<tr> <td VALIGN="TOP" width="20"><b>INFORMATION:</b></td>
</tr>
<tr> <td></td>
<?php print ("<td width='75%'><pre>$variable7</pre></td>"

</tr>
<tr> <td VALIGN="TOP"><b>LOGS:</b></td>
</tr>
<tr> <td></td>
<?php print ("<td><pre>$variable8</pre></td>"

</tr>
</table>
<table>
<table width="100%" border="0" align="center" style="border-left-width: 0; border-right-width: 0; border-top-width: 0">
<hr></hr>
</table>
</body>