fill in blanks to define the function "myMul",which takes two paramenters and prints the product of their multiplication | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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; }

15th Sep 2018, 3:08 PM
Erick Peter Athuman
5 Answers
+ 9
#Answer: function myMul($num1, $num2) { echo $num1*$num2; }
15th Sep 2018, 3:31 PM
Femi
Femi - avatar
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
15th Sep 2018, 11:54 PM
Joaquin Nievas
Joaquin Nievas - avatar
0
$ and *
17th May 2022, 6:32 AM
Megha Raj kandel
0
function and *
17th May 2022, 6:40 AM
Megha Raj kandel
- 1
Function mymul($num1, $num2) { echo $num1 * $num2; }
23rd May 2020, 3:48 PM
Shailesh Kumar meena
Shailesh Kumar meena - avatar