Skip to content
Snippets Groups Projects
Commit 7afe732d authored by KAPIAS NICOLAS's avatar KAPIAS NICOLAS
Browse files

exercice 18/12/2024

parents
No related merge requests found
<html>
<head>
<title>M2GPI</title>
</head>
<body>
<form method="POST" action="rectangle.php">
Largeur : <input type="number" name="largeur"/>
Longueur : <input type="number" name="longueur"/>
<input type="submit" name="calcul" value="Calculer"/>
</form>
<?php
if (isset($_POST['calcul'])) {
$surface = $_POST['largeur'] * $_POST['longueur'];
echo "La surface du rectangle est " . $surface;
}
?>
</body>
</html>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment