![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
06/12/2012, 07:38
|
| | Fecha de Ingreso: febrero-2010
Mensajes: 195
Antigüedad: 15 años Puntos: 3 | |
Respuesta: Tabla sencilla
Código:
<table border="0" cellpadding="0" cellspacing="0">
<?php $c=1; ?>
<?php for ($i=0; $i<3; $i++){;?>
<tr>
<?php for ($j=0; $j<3 ; $j++){?>
<td><?php echo $c++; ?></td>
<?php } ?>
</tr>
<?php } ?>
</table>
espero te sirva |