代码表示:
<?php
$l=1;
echo '<table width="800" border="1">';
while ($l<10) {
if ($l%2==0) {
echo '<tr bgcolor="green">';
}else{
echo '<tr>';
}
$h=1;
while ($h < 10) {
if($h>=$l){
$t=$l*$h;
echo '<td>'."$l*$h=$t".'</td>';
}
$h++;
}
$l++;
echo '</tr>';
}
echo '</table>';
?>
效果图: