I'm using a simple loop to echo back some numbers
<?php
$inc = 0.25;
$start = 0.25;
$stop = 5.00;
?>
<?php while($start != ($stop + $inc)){ ?>
<option><?php echo $start ?></option>
<?php $start = $start + $inc; ?>
<?php } ?>
However 5.00 appears as 5 and 4.50 appears as 4.5
How would i get this script to display 5.00, 4.00, 3.00, 3.50
Also apoligise for the title, i don't know how to explain this!
Thanks