i want to make a simple calculation: 21.60 / 72 and i know the result is 0.3 but it seems the code isnt giving the expected result and echos "Not ok", can any of you figure this out?
if (21.60 / 72 == 0.3) {
echo "Ok";
}
else {
echo "Not ok";
}