Substraction Program in PHP

This is subtraction program, this will perform subtraction operation using 2 (Two) numbers. <?php $a = 10; $b = 20; $c = $b – $a; echo “Answer: “.$c; ?>  

Adding two numbers in PHP

Program for adding two numbers in php. This program will add two numbers using PHP. <?php $a = 10; $b = 20; $c = $a + $b; echo “Sum of two number is: “.$c; ?>