Answers for "creat a php code tha display the sum of two number"

PHP
0

sum two numbers in php

<?php  
$x=10;  
$y=20;  
$z = $x + $y;  
echo "Sum of x and y : ". $z;  
?>
Posted by: Guest on April-19-2021

Code answers related to "creat a php code tha display the sum of two number"

Browse Popular Code Answers by Language