Subtract the two values and print the result : Integer : Language Basics PHP Source Code


PHP Source Code » Language Basics » Integer »

 

Subtract 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>Subtracted $b from $a and got $c</P>";



?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Integer