请问
<?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
의 테이블 태그인 태그 쌍입니다.