My For Each Loop outputs only 1 result. what I am trying to do is output 3 results from foreach loop then essentially break/stop the loop.
<?php $i=0; foreach($feature_event as $event): $i++ ?>
<?php if($event["end"] >= $now && $i==3): ?>
... CODE HERE ...
<?php endif; ?>
<?php endforeach;?>
