sum two numbers in php

Solutions on MaxInterview for sum two numbers in php by the best coders in the world

showing results for - "sum two numbers in php"
Esteban
12 Aug 2019
1<?php  
2$x=15;  
3$y=30;  
4$z=$x+$y;  
5echo "Sum: ",$z;  
6?>  
Lilian
02 Aug 2020
1<?php  
2$x=10;  
3$y=20;  
4$z = $x + $y;  
5echo "Sum of x and y : ". $z;  
6?>