Why show incorrect result with php function ?
This is my code. It's must to show 0
But when i test this code. It's show 99
Why ?????
<?PHP
$first = "8.12";
$second = "0.12";
$first = ($first)*(100);
$second = ($second)*(100);
$results = ($first)-($second);
echo ($results)%(100);
?>