Web/TP/TP2/ex3/calculatrice.php

35 lines
784 B
PHP
Raw Normal View History

2024-05-06 10:20:57 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title></title>
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body container>
<h3>Calculatrice</h3>
<form method="POST">
<!-- opérande 1 -->
<input placeholder="un nombre" type="number" step="any" name="op1" />
<!-- opération -->
<select name="operation">
<option value="+">+</option>
<option value="-">-</option>
<option value="x">x</option>
<option value="/">/</option>
</select>
<!-- opérande 2 -->
<input placeholder="un nombre" type="number" step="any" name="op2" />
<!-- bouton -->
<button type="submit" name="soumis"> Calculer</button>
</form>
</body>
</html>