Let's say I have this foreach:
foreach ($items as $item) {
$name = $item->name;
$number = $item->number;
}
and I want to use them else where on the same page - say below the containing div like this:
<div>
<!-- where the php foreach would go -->
</div>
<div>
<?= $name ?>
</div>
would this break the page? or are the variables local to anywhere after the foreach loop?