Hello everyone
as you see below i have a table which contains some text. The text written in this table comes from a database which is sent by users.
My problem is that if some user writes a text without spaces longer than this table then the table will be stretched but i want the text to be wraped instead ( break )
[code=php]
<table width="100" >
<tr>
<td>
<?PHP
print $text;
?>
</td>
</tr>
</table>
[/code]
as you see below i have a table which contains some text. The text written in this table comes from a database which is sent by users.
My problem is that if some user writes a text without spaces longer than this table then the table will be stretched but i want the text to be wraped instead ( break )
[code=php]
<table width="100" >
<tr>
<td>
<?PHP
print $text;
?>
</td>
</tr>
</table>
[/code]
Comment