← ^ →
PHP
<?php function multiply($num1, $num2) { $total = $num1 * $num2; return $total; } $mynum = multiply(5, 10); ?>
José M. Vidal .
7 of 33