Answers for "php given two numbers returns the multiplication of both"

PHP
0

Write a Multiplication program of two numbers in php using operator

<?php 
$x=10; 
$y=2; 
$z=$x*$y; 
echo "result is",$z; 
?>
Posted by: Guest on July-10-2021

Code answers related to "php given two numbers returns the multiplication of both"

Browse Popular Code Answers by Language