slimphp / PHP-View

A Simple PHP Renderer for Slim 3 & 4 (or any other PSR-7 project)
MIT License
263 stars 60 forks source link

Loop #48

Closed paularolim closed 5 years ago

paularolim commented 5 years ago

How can I make a loop in html to display an array?

shadowhand commented 5 years ago
<?php foreach ($collection as $item): ?>
    <div><?php echo $item['name']; /* or $item->name() with objects */ ?></div>
<?php endforeach ?>