A couple possibilities:
1. Don't allow data with words longer than X number of characters, e.g.:
if(preg_match('/\S{15}/', $text))
{
// error
}
2. Output the text inside of a <p> or <div> element which has a fixed width and overflow: auto (which will cause a horizontal scrollbar to appear if the text won't fit horizontally:
<td><p style="width: 90px; overflow: auto;">blah blah blahhhhhhhhhhhhh</p></td>