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;
?>