How can I print decimal numbers like
0.05
0.10
0.15
0.20
0.25
0.30
0.35
0.40
0.50
.
.
.
1.25
Tried with below code but it does not work
<?php
$start = 1;
$end = 3;
$place = 0.5;
$step = 0.05 / pow(10, $place);
for($i = $start; $i <= $end; $i = round($i + $step, $place))
{
echo $i . "
";
}
?>