PARTE IN HTML
<html>
<head>
<title>scelta dell'automobile</title>
</head>
<body background="immagini/logo_mercedes.jpg">
<center><b><font face="arial" size="20" color="silver">MERCEDES BENZ</font></b></center>
<table border=0>
<tr>
<td>Scelta del modello:
<form action="gp_ud6.php" method="POST">
<select name="rmodello">
<option volue="s">Mercedes classe S65 AMG<p>
<option volue="sls">Mercedes classe SLS65 AMG<p>
<option volue="cl">Mercedes classe CL65 AMG<p></td>
</tr>
<tr>
<table border=0 align=right>
<tr>
<td>Optional aggiuntivi:</td>
</tr>
<tr>
<td><input type="checkbox" name="xc" value="riscaldamento supplementare">riscaldamento supplementare<p></tr>
<tr><td><input type="checkbox" name="xp" value="dispositivo sicurezza Tempomat">dispositivo sicurezza Tempomat<p></tr>
<tr><td><input type="checkbox" name="xv" value="frigobox posteriore">frigobox posteriore<p></tr>
<tr><td><input type="checkbox" name="xt" value="TV anteriore">TV anteriore<p></tr>
<tr><td><input type="checkbox" name="xk" value="Keyless-go">Keyless-go<p></tr>
<tr><td><input type="checkbox" name="xka" value="Kit aerodinamico AMG">Kit aerodinamico AMG<p></tr>
</tr>
</table>
<table border=0>
<td>Scelta colore:<p></td>
</tr>
</table>
<table border=0>
<tr>
<td><input type="radio" name="rcolor" value="rosso porpora" checked>Rosso porpora<p>
<input type="radio" name="rcolor" value="rosso porpora scuro">Rosso porpora scuro<p>
<input type="radio" name="rcolor" value="rosso lucido">rosso lucido<p></td>
<td><input type="radio" name="rcolor" value="nero">nero<p>
<input type="radio" name="rcolor" value="marrone opaco">marrone opaco<p>
<input type="radio" name="rcolor" value="marrone Mercedes">marrone mercedes<p></td>
<td><input type="radio" name="rcolor" value="grigio metallizzato">grigio_metallizzato<p>
<input type="radio" name="rcolor" value="bianco panna">bianco panna<p>
<input type="radio" name="rcolor" value="bianco lucido">bianco lucido<p></td>
</tr>
</table>
<table border=0>
<tr>
<td>Tipi di cerchioni:<p></td>
</tr>
<tr>
<td><input type="radio" name="htipo" value="di serie">di serie</td>
<td><img src="immagini/cerchio-mercedes.jpg" height=70 weidth=70></td>
</tr>
<tr>
<td><input type="radio" name="htipo" value="speciali AMG">speciali AMG</td>
<td><img src="immagini/cerchionimercedesamg.jpg" height=70 weidth=70></td>
</tr>
</table>
<input type="submit" value="invia">
<input type="reset" value="cancella">
</body>
</html>
PARTE IN PHP
<html>
<head>
<title>scelta dell'automobile</title>
</head>
<body background="immagini/logo_mercedes.jpg">
<?php
echo "<center><b><font face='arial' size='20' color='silver'>MERCEDES BENZ</font></b></center><p>";
//inizializzazione dellevariabili
$rmodello=$_POST['rmodello'];
$rcolor=$_POST['rcolor'];
$htipo=$_POST['htipo'];
echo "Avete selezionato la classe $rmodello di colore $rcolor con cerchioni $htipo della gamma Mercedes competizione limitata.<br>"
//inizializzazione dellevariabili
$xc=$_POST['xc']; $xp=$_POST['xp']; $xv=$_POST['xv'];
$xt=$_POST['xt']; $xk=$_POST['xk']; $xka=$_POST['xka'];
echo "Riepilogo degli optional prenotati:<p>"
if ($xc=="" and $xp=="" and $xv=="" $xt=="" and $xk=="" and $xka=="") echo"NON È STATO PRENOTATI NESSUN OPTIONAL";
else{
if ($xc)
echo"$xc<p>";
if ($xp)
echo"installazione del $xp<p>";
if ($xv)
echo"installazione di un $xv<p>";
if ($xt)
echo"installazione di un $xt<p>";
if ($xk)
echo"installazione del $xp<p>";
if ($xka)
echo"$xv<p>";
}
?>
</body>
</html>
Nessun commento:
Posta un commento