- 3
fill in blanks to define the function "myMul",which takes two paramenters and prints the product of their multiplication
fill in blanks to define the function "myMul",which takes two paramenters and prints the product of their multiplication. Function myMul($num1,__numb2) { echo $num1__$num2; }
5 Réponses
+ 9
#Answer:
function myMul($num1, $num2) {
echo $num1*$num2;
}
0
This is a Q&A site.
If you want to do this and want people to see it, do it in the quiz factory
If you want to know more, check this out:
https://www.sololearn.com/discuss/1316935/?ref=app
0
$ and *
0
function and *
- 1
Function mymul($num1, $num2)
{
echo $num1 * $num2;
}