<?php
$i = 0;
$j = 0;
echo '<テーブル幅 = "800" border ="2" >';
while ($i<8)
{
echo '<tr>';
while ($j<8)
{
echo '<td>'.$i."&".$j.'</td>';
$j ;
}
echo '</tr>';
$i ;
}
echo '</table>';
?>
和
<?php
$i = 0;
echo '<テーブル幅 = "800" border ="2">';
while ($i<8)
{
$j = 0 ;
echo '<tr>';
while ($j<8)
{
echo '< ;td>'.$i."&".$j.'</td>';
$j ;
}
echo '</ tr>';
$i ;
}
echo '</table>';
?>