I have a php document, and I would like to display a variable from the last item from an array.
This how I have it:
<?php if(count($items)): ?>
<?php foreach ($items as $key=>$item):?>
<?php echo $lastone ?>
<?php endforeach; ?>
<?php endif; ?>