programma in esecuzione :








function-return.php

<?php function prodotto($a, $b) { return $a*$b; } $c=prodotto(2,3); echo "<p>2*3=$c</p>"; ?>