$A
need to incremented after endif;
but print whatever
<?php
$A=0;
while ($auction = $result->fetch_assoc()):
if ($A%3==0): ?><br/><?php endif;
$A++;
?>
<div style="float:left;">
<h4><?=$auction['item_name']?></h4>
<img src="<?=$auction['item_image']?>" class="img-responsive">
<span id="countdown" class="timer">how</span>
<button class="c-button" name='bid'>Bid Now!</button>
</div><?php
endwhile;
?>