<html>
<head>
<title>Ferretería</title>
<link rel="stylesheet" type="text/css" href="ferreteria_examen_diseno.css">
</head>
<body>
<?
$nombre=$_POST["nombre"];
$dni=$_POST["dni"];
$telefono=$_POST["telefono"];
$tipo=$_POST["tipo"];
$destornilladores=$_POST["destornilladores"];
$alicates=$_POST["alicates"];
$tip=array("contado","credito");
$t_dest=array("estrella","planos","multipunta");
$pre_dest=array(10,7,6);
$longitud=count($pre_dest);
$t_ali=array("de corte","de cremallera","martillos");
$pre_ali=array(13,14.50,11.50);
$longitud=count($pre_ali);
$precio=0;
$cant_dest=array($_POST["n1"],$_POST["n2"],$_POST["n3"]);
$cant_ali=array($_POST["n4"],$_POST["n5"],$_POST["n6"]);
echo "destornilladores: $destornilladores";
echo "alicates: $alicates";
//DESTORNILLADORES
for($i=0;$i<$longitud;$i++){
if($destornilladores==$t_dest[$i]){
$precio=$precio+$pre_dest[$i]*$cant_dest[$i];
$precio=$precio+$pre_dest[$i];
echo "El precio es $precio";
}
}
//ALICATES
for($i=0;$i<$longitud;$i++){
if($alicates==$t_ali[$i]){
$precio=$precio+$pre_ali[$i]*$cant_ali[$i];
$precio=$precio+$pre_ali[$i];
echo "El precio es $precio";
}
}
?>
Nombre:<?echo $nombre?><br>
DNI:<?echo $dni?><br>
Telefono:<?echo $telefono?><br><br>
Tipo de pago:<?echo $tipo?><br>
Alicates:<? echo "$alicates"?><br><br>
Destornilladores:<? echo "$destornilladores"?><br><br><br>
Precio:<? echo "$precio €"?><br>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<title>Ferretería</title>
<link rel="stylesheet" type="text/css" href="ferreteria_examen_diseno.css">
</head>
<body>
<img src="http://www.aarias.colexio-karbo.com/17-18/Ferreteria_examen/ferreterias%20sanchez.png">
<form action="ferreteria_examen.php" method="post">
<div class="arriba">
<fieldset><legend><p style="color:DodgerBlue;">Datos de la compra</p></legend><br>
Nombre:<br><input type="text" placeholder="Escribe tu nombre" name="nombre" />
<br><br>
DNI:<br><input type="text" placeholder="Escribe tu DNI 12345678X" maxlength="9" name="dni" />
<br><br>
Telefono:<br><input type="tex" placeholder="Escribe tu telefono" maxlength="9" name="telefono" />
</fieldset>
</div>
<div class="centro">
<fieldset><legend><p style="color:DodgerBlue;">Tipo de pago</p></legend>
<select name="tipo">
<option>Seleccione una opción</option>
<option>Contado</option>
<option>Credito</option>
</select>
</fieldset>
</div>
<div class="destabajo">
<fieldset><legend><p style="color:DodgerBlue;">Destornilladores</p></legend>
<input type="checkbox" name="destornilladores" value="estrella">Estrella</input>
<input type="number" name="n1" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores" value="planos">Planos</input>
<input type="number" name="n2" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores" value="multipuntas">Multipuntas</input>
<input type="number" name="n3" class="numeros" value="1" min="1" max="100"><br>
</fieldset>
</div>
<div class="aliderecha">
<fieldset><legend><p style="color:DodgerBlue;">Alicates</p></legend>
<input type="checkbox" name="alicates" value="de corte">De corte</input>
<input type="number" name="n4" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="alicates" value="de cremallera">De cremallera</input>
<input type="number" name="n5" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="alicates" value="martillos">Martillos</input>
<input type="number" name="n6" class="numeros" value="1" min="1" max="100"><br>
</fieldset>
</div>
<div class="botonde">
<fieldset><legend><p style="color:DodgerBlue;">Resumen de pedido</p></legend>
<button type="submit" name="enviar">Enviar pedido</button>
<button type="reset" name="borrar">Borrar pedido</button>
</fieldset>
$_POST["n1"];
$_POST["n2"];
...
<div class="destabajo">
<fieldset><legend><p style="color:DodgerBlue;">Destornilladores</p></legend>
<input type="checkbox" name="destornilladores['estrella']">Estrella</input>
<input type="number" name="n1" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores['planos']">Planos</input>
<input type="number" name="n2" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores['multipuntas']">Multipuntas</input>
<input type="number" name="n3" class="numeros" value="1" min="1" max="100"><br>
</fieldset>
</div>
<!DOCTYPE HTML>
<html>
<head>
<title>Ferretería</title>
<link rel="stylesheet" type="text/css" href="ferreteria_examen_diseno.css">
</head>
<body>
<img src="http://www.aarias.colexio-karbo.com/17-18/Ferreteria_examen/ferreterias%20sanchez.png">
<form action="resultado.php" method="post">
<div class="arriba">
<fieldset><legend><p style="color:DodgerBlue;">Datos de la compra</p></legend><br>
Nombre:<br><input type="text" placeholder="Escribe tu nombre" name="nombre">
<br><br>
DNI:<br><input type="text" placeholder="Escribe tu DNI 12345678X" maxlength="9" name="dni">
<br><br>
Telefono:<br><input type="tex" placeholder="Escribe tu telefono" maxlength="9" name="telefono">
</fieldset>
</div>
<div class="centro">
<fieldset><legend><p style="color:DodgerBlue;">Tipo de pago</p></legend>
<select name="tipo">
<option>Seleccione una opción</option>
<option>Contado</option>
<option>Credito</option>
</select>
</fieldset>
</div>
<div class="destabajo">
<fieldset><legend><p style="color:DodgerBlue;">Destornilladores</p></legend>
<input type="checkbox" name="destornilladores[]" value="estrella">Estrella</input>
<input type="number" name="n1" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores[]" value="planos">Planos</input>
<input type="number" name="n2" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="destornilladores[]" value="multipuntas">Multipuntas</input>
<input type="number" name="n3" class="numeros" value="1" min="1" max="100"><br>
</fieldset>
</div>
<div class="aliderecha">
<fieldset><legend><p style="color:DodgerBlue;">Alicates</p></legend>
<input type="checkbox" name="alicates[]" value="de corte">De corte</input>
<input type="number" name="n4" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="alicates[]" value="de cremallera">De cremallera</input>
<input type="number" name="n5" class="numeros" value="1" min="1" max="100"><br>
<input type="checkbox" name="alicates[]" value="martillos">Martillos</input>
<input type="number" name="n6" class="numeros" value="1" min="1" max="100"><br>
</fieldset>
</div>
<div class="botonde">
<fieldset><legend><p style="color:DodgerBlue;">Resumen de pedido</p></legend>
<button type="submit" name="enviar">Enviar pedido</button>
<button type="reset" name="borrar">Borrar pedido</button>
</fieldset>
</div>
</form>
</body>
</html>
<html>
<head>
<title>Ferretería</title>
</head>
<body>
<?php
$nombre=$_POST["nombre"];
$dni=$_POST["dni"];
$telefono=$_POST["telefono"];
$tipo=$_POST["tipo"];
$destornilladores=$_POST["destornilladores"];
$alicates=$_POST["alicates"];
$tip=array("contado","credito");
$t_dest=array("estrella","planos","multipunta");
$pre_dest=array(10,7,6);
$longitud=count($pre_dest);
$t_ali=array("de corte","de cremallera","martillos");
$pre_ali=array(13,14.50,11.50);
$longitud=count($pre_ali);
$precio=0;
$total="";
$cant_dest=array($_POST["n1"],$_POST["n2"],$_POST["n3"]);
$cant_ali=array($_POST["n4"],$_POST["n5"],$_POST["n6"]);
//DESTORNILLADORES
for($i=0;$i<$longitud;$i++){
if($destornilladores[$i]==$t_dest[$i]){
$precio=$precio+$pre_dest[$i]*$cant_dest[$i];
//echo "El precio es $precio";
$total = $total."-Destornillador ".$destornilladores[$i].", cantidad ".$cant_dest[$i].", precio/unidad ".$pre_dest[$i]."€<br />";
}
}
//ALICATES
for($i=0;$i<$longitud;$i++){
if($alicates[$i]==$t_ali[$i]){
$precio=$precio+$pre_ali[$i]*$cant_ali[$i];
//echo "El precio es $precio";
$total = $total."-Alicates ".$alicates[$i].", cantidad ".$cant_ali[$i].", precio/unidad ".$pre_ali[$i]."€<br />";
}
}
?>
Nombre:<?php echo $nombre?><br>
DNI:<?php echo $dni?><br>
Telefono:<?php echo $telefono?><br><br>
Tipo de pago:<?php echo $tipo?><br>
<?php echo $total ?><br>
Precio:<?php echo $precio."€"?><br>
</body>
</html>