You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>
Test
</title>
<body>

<?php
echo "<table border 😕"1\">";
for ($row=1; $row <= 10; $row++) {
echo "<tr> \n";
for ($col=1; $col <= 10; $col++) {
$res = $col * $row;
echo "<td>$res</td> \n";
}
echo "</tr>";
}
echo "</table>";
?>

</body>
</head>
</html>

You might also like