Created
May 17, 2018 20:32
-
-
Save masiarekrafal/c294fc5ded5e0946476993ac964b67fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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