Check the modulus of the two values and print the result : Modulus « Language Basics « PHP






Check the modulus of the two values and print the result


<?
$a = 85;
$b = 24;
echo "<P>Original value of \$a is $a and \$b is
$b</P>";


$c = $a % $b;
echo "<P>The modulus of \$a and \$b is $c</P>";

?>
           
       








Related examples in the same category