Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/03/2006, 09:48
Yrnving
 
Fecha de Ingreso: febrero-2006
Mensajes: 148
Antigüedad: 18 años, 2 meses
Puntos: 0
hey saludos mira aca esta un ejemplo espero q te funcione:

<html>

<head>
<title></title>
</head>

<body>
<table border="1">
<?php

for ($num=0; $num<10; $num++){
echo"<tr>
<td>
".chr($num)."
</td>
</tr>";
}
?>
</table>
</body>

</html>