mercoledì 8 giugno 2011

USO DELLE COMBOBOX

SCELTA DELLA MACCHINA
Parte html
<html>
<head>
<title>scelta macchina</title>
</head>
<body bgcolor=FFFF00 >
<h2><center>scelta della macchina</center></h2>
<form action=sceltamacchina.php method="POST">
MACCHINA: <select name=mtipo>
<option value="500">500</option>
<option value="audiTT"> Audi TT</option>
<option value="bmwX5"> Bmw X5</option>
</select><p>
<hr witdh=100%>
<center><h2>Colore</h2></center>
<input type=radio name=tcolore value=red> Rosso<p>
<input type=radio name=tcolore value=white>bianco<p>
<input type=radio name=tcolore value=blue> Blu<p>
<input type=radio name=tcolore value=black> Nero<p>
<input type=radio name=tcolore value=grey> Grigio<p>
<hr witdh=100%>
<center><h2>Cerchi</h2></center>
<input type=radio name=tcerchi value=cherchi> cherchi normali<p>
<input type=radio name=tcerchi value=lega> cerchi in lega<p>

<hr witdh=100%>
<center><h2>accessori aggiuntivi</h2></center>
<input type=checkbox name=cd value=navigatore> Navigatore<p>
<input type=checkbox name=cm value=fari xeon> Fari allo xeon<p>
<input type=checkbox name=cc value=fari antinebbia> fari antinebbia<p>
<input type=checkbox name=cn value=airbag passeggiero> Airbag passeggiero<p>
<input type=checkbox name=cv value=airbag laterali> Airbag laterali<p>
<input type=checkbox name=cr value=aria condizionata> Aria condizionata<p>
<input type=checkbox name=ct value=autoradio> Autoradio con usb/lettore cd<p>
<input type=checkbox name=cp value=bluthoot> Bluthooth<p>
<input type=checkbox name=ce value=finestrini elettrici> finestrini elettrici<p>
<input type=submit value=invia>
<input type=reset value=cancella>
</form>
</body>
</html>
Parte php
<html>
<head>
<title>scelta macchina</title>
</head>
<body bgcolor=FFFF00 >
<h2><center>scelta della macchina</center></h2>
<?php
//inizializzazione delle variabili
$mtipo=$_POST['mtipo'];
$tcolore=$_POST['tcolore'];
$tcerchi=$_POST['tcerchi'];

echo "desiderate comprare una/un $mtipo <br>";
echo "del colore $tcolore ";
echo "con dei $tcerchi<p>";

//seconda visualizzazione delle variabili
$cd=$_POST['cd'];
$cm=$_POST['cm'];
$cc=$_POST['cc'];
$cn=$_POST['cn'];
$cv=$_POST['cv'];
$cr=$_POST['cr'];
$ct=$_POST['ct'];
$cp=$_POST['cp'];
$ce=$_POST['ce'];

if($cd=="" and $cm=="" and $cc=="" and $cn=="" and $cv=="" and $cr=="" and $cr=="" and $ct=="" and $cp=="" and $ce=="")
echo "ATTENZIONE !!!!!";

else {
if($cd)
echo "aggiunta del $cd, con sovrapprezzo di 1000 euro/giorno <p>";
if($cm)
echo "aggiunta dei $cm, con sovrapprezzo di 200 euro/giorno <p>";
if($cc)
echo "aggiunta dei $cc, con sovrapprezzo di 100 euro/giorno <p>";
if($cn)
echo "aggiunta del $cn, con sovrapprezzo di 2000 euro/giorno <p>";
if($cv)
echo "aggiunta degli $cv, con sovrapprezzo di 1000 euro/giorno <p>";
if($cr)
echo "aggiunta dell $cr, con sovrapprezzo di 900 euro/giorno <p>";
if($ct)
echo "aggiunta dell $ct, con sovrapprezzo di 850 euro/giorno <p>";
if($cp)
echo "aggiunta del $cp, con sovrapprezzo di 50 euro/giorno <p>";
if($ce)
echo "aggiunta dei $ce, con sovrapprezzo di 950 euro/giorno <p>";
}
?>
</body>
</html>

Nessun commento:

Posta un commento