Skip to content

Instantly share code, notes, and snippets.

@benznest
Created October 21, 2018 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benznest/4bf8141a65bd8c27e244496ca7e52b25 to your computer and use it in GitHub Desktop.
Save benznest/4bf8141a65bd8c27e244496ca7e52b25 to your computer and use it in GitHub Desktop.
<?php
function printMultiply($a){
echo "<br> สูตรคูณแม่ $a = ";
for($i=1;$i<=12;$i++){
echo ($a*$i)." , ";
}
}
for($i=2;$i<=24;$i++){
printMultiply($i);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment