50 lines
428 B
PHP
50 lines
428 B
PHP
|
|
<?php
|
|
|
|
include ('header.html');
|
|
echo<<<_css
|
|
|
|
<style>
|
|
|
|
table,td {
|
|
border:1px solid black;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
_css;
|
|
|
|
|
|
$counter_x;
|
|
$counter_y;
|
|
|
|
|
|
echo "<table>";
|
|
|
|
for ($counter_x = 1 ;$counter_x <= 10; $counter_x++)
|
|
{
|
|
echo '<tr>';
|
|
for ($counter_y = 1 ;$counter_y <= 10; $counter_y++)
|
|
{
|
|
echo '<td>';
|
|
echo $counter_x * $counter_y;
|
|
echo '</td>';
|
|
|
|
|
|
|
|
}
|
|
echo '</tr>';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "</table>";
|
|
|
|
|
|
|
|
include ('footer.html');
|
|
?>
|