<?php

for ($i=1; $i<10; $i++) 

{

for ($j=1;$j<$i+1;$j++) 

echo "$j x $i=" .$j*$i."&nbsp;&nbsp;&nbsp;";

}

echo "<br/>"; 


}

?>

99乘法表(php)_乘法表