php implements the ninety-nine multiplication table
2. [Code][PHP] code
<?php for($i=1;$i<=9;$i++) {for($j=1;$j<=9;$j++) {if($j<=$i){ echo $j."*".$i." = ".$i*$j." ";} } echo "<br/>"; } ?>
The above is the content of the PHP implementation of the ninety-nine multiplication table. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!