0
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 only one div per page, how could I do that? I will in print / print in PDF.