write a multiplication program of two numbers in php using operator

Solutions on MaxInterview for write a multiplication program of two numbers in php using operator by the best coders in the world

showing results for - "write a multiplication program of two numbers in php using operator"
Sophie
24 Sep 2018
1 <?php 
2$x=10; 
3$y=2; 
4$z=$x*$y; 
5echo "result is",$z; 
6?>