<table>
<tr>
<?php
$k=0;
$i = 0;
while($k<20)
{
if ($i % 5 == 0)
{
?>
</tr>
<tr>
<?php
}
?>
<td>111111</td>
<?php
$i ++;
$k++;
}
?>
</tr>
</table>