How to limit loop to all but last value in array??

I have this code which works as expected:

PHP Code:

foreach($bidders as $val) { 
$losing_bidder = ($val->email); 
echo $losing_bidder . ‘<br>?;

Let us […]

Original post by dwest100

Leave a Reply