Hi! Could we please enable some services and cookies to improve your experience and our website?
Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code
<?php
echo '<table border="1" width="100%">';
error_reporting(-1);
$q= '1';
while ($q<10) {
echo "<tr>";
$w = '1';
while ($w<10) {
echo "<td>" . $q * $w . "</td>";
$w++;
}
echo "</tr>";
$q++;
}
echo '</table>';
?>