| cell |
| cell |
| cell |
| cell |
| cell |
| cell |
| cell |
| cell |
| cell |
| cell |
<div><table width="200">
<?php
print str_repeat ("<tr><td>cell</td></tr>", 10);
?>
</table></div>
| This is cell 1 |
| This is cell 2 |
| This is cell 3 |
| This is cell 4 |
| This is cell 5 |
| This is cell 6 |
| This is cell 7 |
| This is cell 8 |
| This is cell 9 |
| This is cell 10 |
<div><table width="200">
<?php
$counter = 1;
while ($counter < 11) {
print str_repeat ("<tr><td>This is cell $counter</td></tr>", 10);
$counter++;
}
?>
</table></div>