1. <html>
  2. <head>
  3. <title> Table de multiplication </title>
  4. <meta charset="utf-8">
  5. <style>
  6. table, th, td {
  7. text-align: center;
  8. border: 1px solid black;
  9. padding: 5px;
  10. border-collapse: collapse;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h1> Les tables de multiplication </h1>
  16. <hr>
  17. <?php
  18. echo "<table>";
  19. for($ligne=0;$ligne<11;$ligne++){
  20. echo "<tr>";
  21. for($col=0;$col<11;$col++){
  22. if ($col+$ligne==0){
  23. echo "<th>/</th>";
  24. }elseif($col==0 || $ligne==0){
  25. echo "<th>".strval($col+$ligne)."</th>";
  26. }else{
  27. echo "<td>".strval($col*$ligne)."</td>";
  28. }
  29. }
  30. echo "</tr>";
  31. }
  32. echo "</table>"
  33. ?>
  34. </body>
  35. </html>