Here's mine...In line #19 I've used concatanation, instead of $result variable creation.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Multiplication Table in Php</title>
</head>
<body>
<?php
$x = 1; //rows
echo "<table border = '2'>\n";
while ( $x <= 10 ) {
echo "\t<tr>\n";
$y = 1;//columns
while ( $y <= 10 ) {
echo "\t\t<td>$x * $y = " . $x * $y . "</td>\n";//the result of the multiplication
$y++;
}
echo "\t</tr>\n";
$x++;
}
echo "</table>";
?>
</body>
</html>
