Yeah, you need to put some constraints on the table.
I know of two ways minumum....
1. You can use <br> tags to break up the text into lines:
Ex:
PHP Code:
This is the first line <br>
Second line<br>
Third line
OR
2. Set a width on the table.
Ex:
PHP Code:
<table width="40">
<tr>
<td>this line will be broken up everytime it reaches the lenght of 40 pixels.</td>
</tr>
</table>
Notice the width is in pixels, the text will go down as soon as it reaches the limit, but you can use percentages too Ex: width="50%".... either way this should help solve your problem.