Skip to content
Snippets Groups Projects
Commit f89d7672 authored by user's avatar user
Browse files

question 1 and 2 of GET

parent 908a9272
No related branches found
No related tags found
No related merge requests found
<?php
function tableMult($numero, $taille) {
echo "<h2>Table de multiplication de $numero (1 à $taille)</h2>";
echo "<table border='1'>";
for ($i = 1; $i <= $taille; $i++) {
echo "<tr>";
echo "<td>$numero</td>";
echo "<td>&times;</td>";
echo "<td>$i</td>";
echo "<td>=</td>";
echo "<td>" . ($numero * $i) . "</td>";
echo "</tr>";
}
echo "</table>";
}
?>
<?php
include 'function.php';
// Appel de la fonction avec le numéro de table 6 et une taille de 15
tableMult(6, 15);
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment