Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/11/2007, 10:18
Avatar de elwata
elwata
 
Fecha de Ingreso: junio-2005
Mensajes: 156
Antigüedad: 18 años, 10 meses
Puntos: 0
Re: Imprimir fechas

Ok muchas gracias por la ayuda...con la modificación siguiente ya quedó OKs

<?php
$inicio = strtotime('2007-10-01');
$fin = strtotime('2007-12-31');
for ($fecha = $inicio; $fecha <= $fin; $fecha += 24 * 60 *60)
{
echo date('Y-m-d', $fecha);
}
?>