Skip to content

Instantly share code, notes, and snippets.

@masiarekrafal
Created May 17, 2018 20:32
Show Gist options
  • Save masiarekrafal/c294fc5ded5e0946476993ac964b67fd to your computer and use it in GitHub Desktop.
Save masiarekrafal/c294fc5ded5e0946476993ac964b67fd to your computer and use it in GitHub Desktop.
<table border="1">
<?php
echo '<tr>';
echo '<th></th>';
for($i=1; $i<=10; $i++)
{
echo '<th>' . $i . '</th>';
}
echo '</tr>';
for($j=1; $j<=10; $j++)
{
echo '<tr><th>' . $j . '</th>';
for($k=1; $k<=10; $k++)
{
$result = $j * $k;
echo '<td>' . $result . '</td>';
}
echo '</tr>';
}
?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment