Ver originalfunction Product($num){ for($i = $num;$i > 0;$i--) { echo $num .'*'. $i .'= '. $num*$i.'<br>' ; } return;} Product(5);