il mio codice della pagina è questo:
Codice PHP:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Documento senza titolo</title>
<script>
function totale() {
prezzo_unitario=eval(document.all.prima.value);
quantita=eval(document.all.seconda.value);
prezzo_totale=prezzo_unitario*quantita;
document.all.terza.value=prezzo_totale;
}
</script>
<style>
.text{
border-left:0px;
border-right:0px;
border-top:0px;
border-bottom:0px;
}
</style>
</head>
<body>
<?
session_start();
$link = mysql_connect('localhost', '', '')
or die('impossibile connettersi al server: ' . mysql_error());
mysql_select_db('my_fabiovergotti') or die('impossibile connettersi al db');
?>
<table width="100%" border="0" align="center">
<tr align="center" valign="middle">
<td>BENVENUTI NELLA PAGINA DI E-COMMERCE</td>
</tr>
<tr align="center" valign="middle">
<td><table width="90%" border="0" align="center">
<tr align="center" valign="middle">
<td>DATA</td>
<td>ARTICOLO</td>
<td>PREZZO UNITARIO</td>
<td>QUANTITÁ</td>
<td>PREZZO TOTALE</td>
<td>PREZZO TOTALE SENZA IVA</td>
</tr>
<tr align="center" valign="middle">
<td>
<SCRIPT language=JavaScript>
function initArray(){
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments[i]
}
var DOWArray = new initArray("Domenica","Lunedì","Martedì","Mercoledì",
"Giovedì","Venerdì","Sabato");
var MOYArray = new initArray("Gennaio","Febbraio","Marzo","Aprile",
"Maggio","Giugno","Luglio","Agosto","Settembre",
"Ottobre","Novembre","Dicembre");
today = new Date();
start = new Date(today.getYear(),00,01);
document.write(""+DOWArray[(today.getDay()+1)]," ", today.getDate(), " ", MOYArray[(today.getMonth()+1)], " ", today.getYear()+0000)
</SCRIPT>
</td>
<td><select name="articolo" id="articolo" onChange="document.prima.value">
<option value=" " selected="selected"> </option>
<?
$strSQL = "SELECT ARTICOLO FROM articoli WHERE QUANTITA!='0' ORDER BY NUMERO ASC";
$result = mysql_query($strSQL);
$num_rows = mysql_num_rows($result);
if ($num_rows < 1) {
echo "<option>NESSUN PRODOTTO DISPONIBILE</option>";
}
else {
while ($rigaArrayRicerca = mysql_fetch_array($result))
{
echo '<option value="'.$rigaArrayRicerca[ARTICOLO].'">'.$rigaArrayRicerca[ARTICOLO].'</option>';
}
}
?>
<?
$articolo=;
$query1 = "SELECT PREZZO FROM articoli WHERE ARTICOLO='".$articolo."'";
$result1 = mysql_query($query1) or die('Query failed: ' . mysql_error());
?>
</select></td>
<td><input type="text" name="prima" onkeyup="totale()"></td>
<td>
<input type="text" name="seconda" onkeyup="totale()"></td>
<td><input name="terza" type="text" disabled="disabled" class="text" autocomplete="on" value="nessun valore inserito" readonly></td>
<td><input name="quarta" type="text" disabled="disabled" class="text" autocomplete="on" readonly></td>
</tr>
</table></td>
</tr>
<tr align="center" valign="middle">
<td><? echo $result1; ?></td>
</tr>
</table>
</body>
</html>