// per casa una pagina php che scrive la tavola pitagorica 2 cicli for annidati

Tabella con PHP

1234567891011121314151617181920
246810121416182022242628303234363840
3691215182124273033363942454851545760
48121620242832364044485256606468727680
5101520253035404550556065707580859095100
6121824303642485460667278849096102108114120
714212835424956637077849198105112119126133140
81624324048566472808896104112120128136144152160
918273645546372819099108117126135144153162171180
102030405060708090100110120130140150160170180190200

 

 

Sottostante il codice php

<h1>Tabella con PHP</h1>
 
<table border="1">
 
<?php
    for($i=1; $i <= 10; $i++)
    {
        echo '<tr>';
        for($j=1; $j <= 20; $j++)
        {
            echo '<td align="right">' . ($i*$j) . '</td>';
        }
        echo '</tr>';
    }
?>
 
</table>