programming-examples/php/Basics/Add two numbers Program in PHP.php

11 lines
87 B
PHP
Raw Normal View History

2019-11-18 14:44:36 +01:00
<?php
$a=10;
$b=20;
$c=$a+$b;
echo "Sum: ",$c;
?>
/* Output : Sum: 30*/