Generation

generate functionFri, 31 Mar 2023

tabla de multiplicar del uno al 20

<?php function mult($i) { for ($j=0; $j <= 10; $j++) { echo "$i * $j = ". ($i*$j) . "<br>"; } } for ($i=1; $i <= 20; $i++) { mult($i); } ?>

Questions about programming?Chat with your personal AI assistant