If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
<?php
/*define a function ti print a table.
*@param $number:int.
*/
function print_table($number)
{
echo "Table of $number : <br/>";
for($i=1 ; $i<=10 ; $i++)
{
echo $i*$number."<br/>";
}
}
/*now try to print a table*/
print_table(10);
print_table(14);
?>
Table of 10 : 10 20 30 40 50 60 70 80 90 100 Table of 14 : 14 28 42 56 70 84 98 112 126 140