Bueno hay muchas formas y miles de ejemplos, te dejo un par:
Código PHP:
Ver original<?php
$fecha = '20-02-2012';
$r = floor(($f2-$f1) / (60 * 60 * 24));
for ($i = 0; $i <= $r; $i++) {
}
?>
Código PHP:
Ver original<?php
$startDate = new DateTime('20-02-2012');
$endDate = new DateTime('now');
while($startDate->getTimestamp() <= $endDate->getTimestamp()){
echo $startDate->format('d-m-Y') . '<br/>';
$startDate->modify("+1 days");
}
?>