Here is the php code: when $lat and $lng equal to 0.087 after the increment, the while loop returns false and break the loop when it should return true because it is a <= operator. Can someone explains to me why?
$lat = 0.029;
$lng = 0.029;
while ( $lat <= 0.087 && $lng <= 0.087 ){
$lat += 0.029;
$lng += 0.029;
}