I have a loop:
<?php for($i=0; $i<=20; $i++){ ?>
<div id="">
<?php echo $i; ?>
</div>
<?php } ?>
I need each of these DIVs to appear separately at the time of printing, that is, one item per page, regardless of the height of the div, I would like it to be just one div per page, how could I do that? I'm going to print / print in PDF.