Salve a tutti
Sto cercando di creare due pagine per un programma
cerco di spiegarmi bene
pagina A un form per inserire nel database dei dati in tabella (materiale metri kw)
una volta registrati un pagina dove possa fare il preventivo
nella casella materiali deve uscire in tendina la lista del database e a seconda di che materiale si sceglie devono scriversi i campi kw e prezzo
come posso fare?
ho gia creato i due form quello dell'inserimento non va ç_ç e quello della seconda pagina devo capire come mettere i menu da db
grazie a chi puo' aiutarmi
__________________________________________________ _______________
Codice PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PAGINA CARICAMENTO DATI</title>
</head>
<body>
<table border="0">
<tr>
<td align="center">Inserisci i dati richiesti</td>
</tr>
<tr>
<td>
<table>
<form method="post" action="inserimento.php">
<tr>
<td>Tipo di materiale</td>
<td><input type="text" name="materiale" size="40">
</td>
</tr>
<tr>
<td>Prezzo al metro</td>
<td><input type="text" name="prezzomt" size="40">
</td>
</tr>
<tr>
<td>Assorbimento Kw</td>
<td><input type="text" name="assorbimentokw" size="40">
</td>
</tr>
<tr>
<td></td>
<td align="right"><input type="submit"
name="Invia" value="Invia"></td>
</tr>
</table>
</td>
</tr>
</table>
<?
mysql_connect("xxxxxx","xxxxx","xxxxxx");
mysql_select_db("xxxxxx");
$materiali=$_POST['materiale'];
$prezzomt=$_POST['prezzomt'];
$assorbimentokw=$_POST['assorbimentokw'];
$query = "INSERT INTO materiali VALUES('','$materiali',)";
$query = "INSERT INTO prezzomt VALUES('','$prezzomt',)";
$query = "INSERT INTO assorbimentokw VALUES('','$assorbimentokw',)";
mysql_query($query) or die( "Errore nella query. Query non eseguita");
mysql_close();
?>
</body>
</html>
echo("<br>Inserimento avvenuto correttamente");
} else{
echo("<br>Inserimento non eseguito");
}
?>
</body>
</html>
__________________________________________________ ______________
pagina per preventivo
__________________________________________________ ______________
Codice PHP:
<form action="mioform.php" method="post" name="xxxxxxx">
<input type="hidden" name="formID" />
<label>Inserisci il materiale</label>
<input type="text" name="materiale">
<label>Inserisci il prezzo </label>
<input type="text" name="prezzo">
<label>Inserisci i metri </label>
<input type="text" name="metri"><br>
<label>Inserisci i Kw consumati</label>
<input type="text"name="Kw"><br>
<label>Inserisci le ore </label>
<input type="text" name="ore">
<label>Inserisci la fascia di prezzo</label>
<input type="text" name="prezzoore"><br>
<label>Inserisci tipo di sconto</label>
<input type="text" name="sconto"><br>
<label>Inserisci percentuale d'IVA</label>
<input type="text" name="iva"><br>
</form>
<?
$articolo=$_POST['materiale'];
$prezzo=$_POST['prezzo'];
($articolo == 'materiale') {
$tot = $articolo* $prezzo;
}
echo $tot;
$kw=$_POST['Kw'];
$metri=$_POST['metri'];
$tot_quadri = $Kw*$metri/3;
}
echo $tot_quadri;
$ore=$_POST['ore'];
$prezzoore=$_POST['prezzoore'];
$tot_ore = $ore*$prezzoore;
}
echo $tot_ore;
$sconto=$_POST['sconto'];
$tot_sconto = $tot+$tot_ore/100*$sconto;
}
echo $tot_sconto;
$iva=$_POST['iva'];
$tot_iva = $tot+$tot_ore/100*$iva;
}
echo $tot_iva;
$tot_risultato = $tot+$tot_ore-$tot_sconto+$tot_iva;
}
echo $tot_risultato;
?>
<input type="submit" name="calcola">
__________________________________________________ _______________
EDIT:
lol scusa hai ragione XD