Código PHP:
$i = 1;
$e = 1;
echo "<table width=\"150\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">";
while ($i > 5){
echo "<tr>";
while ($e>5){
echo "<td>".$i."</td>";
$e++;
}
echo "</tr>";
$i++;
}
echo "</table>";