Skip to content

Instantly share code, notes, and snippets.

@besingamkb
Created October 11, 2014 08:52
Show Gist options
  • Save besingamkb/50a63a08e5ab227432d8 to your computer and use it in GitHub Desktop.
Save besingamkb/50a63a08e5ab227432d8 to your computer and use it in GitHub Desktop.
multiplication table 1 to 12
<?php
$a = 12;
for ($b = 1; $b <= $a; $b++ ) {
for ($c = 1; $c <= $a; $c++) {
$sum = $b * $c;
echo $b . " x " . $c . " = " .$sum;
echo "<br />";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment