<?php
  $M
=$_REQUEST['M'];
  
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Table de multiplication</title>
  </head>
  <body>
  <h1>Table de multiplication</h1>
  <table>
    <caption>Table de multiplication de 1 à <?php echo $M ?></caption>
    <tr>
      <th></th>
      <?php
        
for($i=1;$i<=$M;$i=$i+1) {
          echo 
"<th>$i</th>";
        }
        
?>
    </tr>
    <?php
      
for($i=1;$i<=$M;$i=$i+1) {
        echo 
"<tr><th>$i</th>";
        for(
$j=1;$j<=$M;$j=$j+1) {
          echo 
"<td>".($i*$j)."</td>";
        }
        echo 
"</tr>";
      }
      
?>
  </table>
  </body>
</html>