thanks...
This is my snippet for those people who needs it. This code will analyze the result if a CSS scroll bar is needed or not.
<div style="{U_IFRAME}"> // content </div>
//--------------------------------
$iframe_html = "overflow:auto;width: 500px;height: 120px;";
while ($row = $db->fetch_array($result) ) {
// .. .. ..
if ( substr_count ($text->br($row[content]), "<br>" ) < 5)
$html_default = preg_replace ("{{U_IFRAME}}", "", $html_default);
else
$html_default = preg_replace ("{{U_IFRAME}}", $iframe_html, $html_default);
}