Ejemplo
Código PHP:
<table width="200" border="1" align="center">
<?php
for($i=0; $i<=9; $i++)
{
?>
<tr>
<td width="19"><input type="checkbox" name="checkbox" id="checkbox"></td>
<td width="165">Nombre</td>
</tr>
<?php
}
?>
</table>