martes, 23 de noviembre de 2010

Suma de dos numeros

La intecion es introducir dos valores en un formulario de html y optener el resultado en una
pagina de php.

esta es el codigo en html.

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Suma de dos numeros</title>
</head>
<body bgcolor="#D2EBF7">
<h1>Suma de Dos Números</h1>
<form method="get" action="resultado.php">
 <b>Valor 1:</b><input type="text" name="N1"><br>
 <b>Valor 2:</b><input type="text" name="N2"><br>
 <input type="submit" value="Enviar">
 <input type="reset" value="Limpiar">
</form>
</body>
</html>

esta es el código en php.

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Resultado de sumas</title>
</head>
<body bgcolor="#CCFFFF">
<?php
 $suma = $_GET["N1"] + $_GET["N2"];
 echo "<h1>Resultado</h1>";
 echo "N1: " . $_GET["N1"] . "<br>";
 echo "N2: " . $_GET["N2"] . "<br>";
 echo "Suma: $suma<br>";
?>
<a href="suma.html">Nueva Suma</a>
</body>
</html>

No hay comentarios:

Publicar un comentario