The following PHP 99 multiplication table code example is for beginners to learn:
$a=1;
$b=1;
for ($a = 1;$a<=9;$a++)
{
for ($b = 1;$b<=9;$b++) echo "$a*$b=".$a*$b."t";
echo "
";
}
?>
http://www.bkjia.com/PHPjc/752068.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752068.htmlTechArticleThe following PHP 99 multiplication table code example is for beginners to learn: $a=1; $b=1; for ($a = 1;$a=9;$a++) { for ($b = 1;$b=9;$b++) echo $a*$b=.$a*$b.t; echo ; } ?. ..