Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/04/2007, 15:05
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Re: Enumerar celdas de una tabla

Pues haz un ciclo:
Código PHP:
<table>
<?php
$i 
0;
while( 
$i 10 ) { ?>
<tr>
      <td><?php echo $i?></td>
</tr>
<?php
}
?>
</table>