PHP,Tipo de triangulos
Enviado por GuidoBal • 17 de Julio de 2019 • Apuntes • 1.313 Palabras (6 Páginas) • 109 Visitas
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form accion= "nivel3.php" method="POST">
<label for ="txt_valor1"> Valor1
<input type="text" name="txt_valor1"> </label><br>
<label for ="txt_valor2"> Valor2
<input type="text" name="txt_valor2"> </label><br>
<label for ="txt_valor3"> Valor3
<input type="text" name="txt_valor3"> </label><br>
<input type="submit" value="Ingresar">
</form>
<?php
if(isset($_POST["txt_valor1"]) and isset($_POST["txt_valor2"]) and isset($_POST["txt_valor3"]))
{
if ($_POST["txt_valor1"]!="" and $_POST["txt_valor2"]!="" and $_POST["txt_valor3"]!="")
{
if($_POST["txt_valor1"]==$_POST["txt_valor2"] && $_POST["txt_valor1"]==$_POST["txt_valor3"])
{
echo "Son iguales";
}
elseif ($_POST["txt_valor1"] != $_POST["txt_valor2"] && $_POST["txt_valor1"] != $_POST["txt_valor3"])
{
echo "Son todos distintos";
}else
{
echo "Dos son iguales";
}
if($_POST["txt_valor1"]>=$_POST["txt_valor2"] && $_POST["txt_valor1"]>=$_POST["txt_valor3"])
{
$valormayor=$_POST["txt_valor1"];
}elseif ($_POST["txt_valor2"]>=$_POST["txt_valor1"] && $_POST["txt_valor2"]>=$_POST["txt_valor3"]) {
$valormayor=$_POST["txt_valor2"];
}else
{
$valormayor=$_POST["txt_valor3"];
...