Búsqueda personalizada
 
 
 
 
   
 
  <head>
  <title>Problema</title>
  </head>
  <body>
  <form action="respuesta3.php" 
  method="post">
  Ingrese primer valor:
  <input type="text" name="valor1">
  <br>
  Ingrese segundo valor:
  <input type="text" name="valor2">
  <br>
  <input type="radio" name="radio1" value="suma">sumar
  <br>
  <input type="radio" name="radio1" value="resta">restar
  <br>
  <input type="submit" name="operar">
  </form>
  </body>
  </html>
 
 
 
<html>
  <head>
  <title>Problema</title>
  </head>
  <body>
  <?php
  if ($_REQUEST['radio1']=="suma")
  {
    $suma=$_REQUEST['valor1'] + $_REQUEST['valor2'];
    echo "La suma es:".$suma;
  }
  else
  {
    if ($_REQUEST['radio1']=="resta")
    {
      $resta=$_REQUEST['valor1'] - $_REQUEST['valor2'];
      echo "La resta es:".$resta;
    }
  }
?>
</body>
 </html>
 
 
 
       

¿Quienes somos?

Condiciones de uso

Publicidad

Privacidad de la informacion