<?php
$width = 10;
$height = 2;
echo rectrangleCalculate($width,$height);
function rectrangleCalculate($width,$height){
return ($width * $height);
}
?>
<?php
$width = 10;
$height = 2;
echo rectrangleCalculate($width,$height);
function rectrangleCalculate($width,$height){
return ($width * $height);
}
?>
0Comments
Thanks you for commenting your questions. I will see question and respond you.