Test this code,
which result do you get with it:
how comes that i always get: 0.06 < 0.06
which result do you get with it:
PHP Code:
<?php
$max_bid = 0.06;
$min_bid = 0.05;
$out['recommended_highest_bid'] = ($min_bid + 0.01);
if($max_bid == $out['recommended_highest_bid']){ echo ''.$max_bid.' = '.$out['recommended_highest_bid'].'<br/>'; }
elseif($max_bid > $out['recommended_highest_bid']){ echo ''.$max_bid.' > '.$out['recommended_highest_bid'].'<br/>'; }
elseif($max_bid < $out['recommended_highest_bid']){ echo ''.$max_bid.' < '.$out['recommended_highest_bid'].'<br/>'; }
?>
Comment