Mega Code Archive
Categories
/
Php
/
Data Type
Subtract the two values and print the result
$a = 85; $b = 24; echo "
Original value of \$a is $a and \$b is $b
"; $c = $a - $b; echo "
Subtracted \$b from \$a and got $c
"; ?>