BasesWeb/BACKEND/PHP/tp2/ex2/include/controller.php

8 lines
160 B
PHP
Raw Permalink Normal View History

2023-04-20 11:27:24 +02:00
<?php
$nombre=$_GET['table'];
echo "<h3> Table de $nombre </h3>";
for($i=1;$i<11;$i++){
$resultat=$i*$nombre;
echo "<li> $i x $nombre = $resultat </li>";
}
?>