Two solutions:
$screen = 1.4; // it can be other decimal value for ($i = 1, $k = 0; $i <= $screen; $i += 0.1, $k+=25) { echo $i . ' - ' . $k . '<br>'; }
OR
$screen = 1.3; // it can be other decimal value for ($i = 1, $k = 0; $i <= $screen+0.1; $i += 0.1, $k+=25) { echo $i . ' - ' . $k . '<br>'; }
Tested. Both work ... as far as I understand what you want to do.
Tested output of both:
1 - 0 1.1 - 25 1.2 - 50 1.3 - 75
source share