Heim > Fragen und Antworten > Hauptteil
请问
<?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>';
?>
autoload2021-12-30 16:16:39
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中的表格标签