Código PHP:
<?php
$inicio = new DateTime($row['fti']); // 2019-03-10
$fin = new DateTime($row['ftf']); // 2019-03-25
while ($inicio <= $fin) {
?>
<span class="p-4">
<?=$inicio->format('d');?>
</span>
<?php
$inicio->modify('+ 1 days');
}
?>
// Resultado: 10 11 12 13 14... hasta llegar a 25
Código PHP:
<?php
// consulta
while ($filas = $it->fetch()){
?>
<?=$filas['titulo'];?><br>
<?=$filas['fii'];?> <!-- fecha de inicio de pedido 2019-03-11 --><br>
<?php
}
?>
Gracias y espero me ayuden