请问
<?php
echo '<table width="800" border="1">';
$i=0; while($i<10){
echo '<tr>';$j=0;
while($j<10){
echo '<td>'.$j.'</td>';
$j ; }
echo '</tr>'; $i ;}
echo '</table>';
?>
echo '<table width="800" border="1">'; $i=0; while($i<10){ echo '<tr>'; $j=0; while($j<10){ echo '<td>'.$j.'</td>'; $j++; } echo '</tr>'; $i++; } echo '</table>';
<tr></tr> は、HTML
<tr></tr> は、HTML
のテーブルタグであるタグペアです。