-
Notifications
You must be signed in to change notification settings - Fork 2
/
ejemplo_operadores.php
52 lines (41 loc) · 1021 Bytes
/
ejemplo_operadores.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
</head>
<body>
<p> </p>
<form name="form1" method="post" action="<?php $_SERVER['PHP_SELF']?>">
<p>
<label for="num1"></label>
<input type="text" name="num1" id="num1">
<label for="num2"></label>
<input type="text" name="num2" id="num2">
<label for="operacion"></label>
<select name="operacion" id="operacion">
<option>Suma</option>
<option>Resta</option>
<option>Multiplicación</option>
<option>División</option>
<option>Módulo</option>
<option>Incremento</option>
<option>Decremento</option>
</select>
</p>
<p>
<input type="submit" name="button" id="button" value="Enviar" onClick="prueba">
</p>
</form>
<p> </p>
<?php
include("calculadora.php");
if(isset($_POST["button"])) {
$numero1=$_POST["num1"];
$numero2=$_POST["num2"];
$operacion=$_POST["operacion"];
calcular($operacion);
}
?>
</body>
</html>