<html ><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>FORMULARIO</title></head><body><h1>formulario</h1><?php if($_POST){ $numero1=$_POST['n1']; $numero2=$_POST['n2']; $res_suma = ($numero1+$numero2); $res_resta = ($numero1-$numero2); $res_multiplicacion =($numero1*$numero2); $res_division = ($numero1/$numero2); if($numero1=="") { echo "el campo 1 esta vacio"; } else { if($numero2=="" ) { echo "el campo 2 esta vacio"; } if($numero1=="" && $numero2=="") { echo "el campo 1 y campo 2 estan vacios"; } else { echo "LA SUMA ES :".$res_suma; echo "LA RESTA ES: ".$res_resta; echo "LA MULTIPLICACION ES:".$res_multiplicacion; echo "LA DIVISION ES :".$res_division; } } }else{ /*{ //include('../clases/FORMULARIO_PHP_VALIDAR SESION/formulario_enviado.php') $ if($_POST['n1'] && $_POST['n2']) { echo '<p><strong>' .$_POST['nombre']." ".$_POST['apellido'].'</strong>,ha implemetado el formulario correctamente</p>'; } else { echo '<p>Los datos estan incompletos.</p> <p> <a href="practica.php">VOLVER </a>'; } } else {*/ ?><form action="practica.php" method="post"><fieldset> <legend> Opciones generales </legend><fieldset><legend> datos personales </legend><input type="text" name="n1" value=""><input type="text" name="n2" value=""></fieldset></fieldset><input type="submit" value="Enviar" ><input type="reset" value="borrar" ><?php } ?></form></body></html>