Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/10/2009, 14:07
Nisrokh
 
Fecha de Ingreso: septiembre-2009
Ubicación: Neuquén
Mensajes: 142
Antigüedad: 15 años, 5 meses
Puntos: 12
Respuesta: Enumeracion a aprtir de 0

Proba esto y fijate los resultados ;)

Código php:
Ver original
  1. <?php
  2.  
  3. $max_value = 32;
  4.  
  5. for ($i = 0; $i <= $max_value; $i++) {
  6.         print $i. '<br />';
  7. }
  8.  
  9. ?>