<?php
$s=0;
echo '<table width="800" border="1">';
while ( $s<100){
if($s ==0){
using use using using using using using ‐ ‐ ‐ echo '<tr>'-- s.'</tr>';
s.'</td>';
$s ;
}echo '</table>';
appear when written like this?
The reason for echo '<tr>'.$s.'</tr>'; is because you directly output the value in tr after each $s%==0. The tr output content will be displayed directly above the table. Normally, the <tr> set of <td> tags will be used.
The reason for echo '<tr>'.$s.'</tr>'; is because you directly output the value in tr after each $s%==0. The tr output content will be displayed directly above the table. Normally, the <tr> set of <td> tags will be used.