Well ofcourse, you declared the item as that then it would be as that, you would need to do something like this.
if($cstyle == 3) {
$csty = '<tr><td width="250px" valign="top"><strong><font color="#000080"><u>'.$forum['name'].'</u></font></strong>'.$forums.'</td></tr>'; /// make new line every 3 Categorys.
} else {
$csty = '<td width="250px" valign="top"><strong><font color="#000080"><u>'.$forum['name'].'</u></font></strong>'.$forums.'</td>'; /// make only category without new line.
}
$cstyle++;
if($cstyle == 3) $cstyle = 0;