Salve a tutti,
sto realizzando un magazzino di articoli in php/html
in un form ho una select con l'elenco dei prodotti (letti dal DB) e in base alla selezione fatta voglio fare uscire le giacenze.
mi aiutate con questo codice??? vorrei evitare il javascript
non ricordo come inserire il codice nel forum perdonatemi
******************************************************************************
<form action="richieste.php" method="post">
<table class="f1" border="1">
<tr>
<td>
ARTICOLO
</td>
<td>
<select name="articolo" id='articolo' onChange="">
<? echo $query="Select id,nome from articoli";
$res=mysql_query($query) or die(mysql_error());
while($p=mysql_fetch_array($res)){ ?>
<option value='<? echo $p[id]; ?>'><? echo $p[nome] ?></option>
<? } ?>
</select>
</td>
<td>
<img src="img/piu.png" width="30px" height="30px">
</td>
</tr>
<tr>
<td>
QUANTITA'
</td>
<td>
<input type="text" name="quantita">
</td>
<td>
\ <? echo $p['id'];
echo $qgiacenza="select giacenza from articoli where id=\" $p[id] \"";
$resgiacenza=mysql_query($qgiacenza) or die(mysql_error());
while($g=mysql_fetch_array($resgiacenza));
echo $g;
?>
</td>
</tr>
</table>
</form>
************************************************
sto realizzando un magazzino di articoli in php/html
in un form ho una select con l'elenco dei prodotti (letti dal DB) e in base alla selezione fatta voglio fare uscire le giacenze.
mi aiutate con questo codice??? vorrei evitare il javascript
non ricordo come inserire il codice nel forum perdonatemi
******************************************************************************
<form action="richieste.php" method="post">
<table class="f1" border="1">
<tr>
<td>
ARTICOLO
</td>
<td>
<select name="articolo" id='articolo' onChange="">
<? echo $query="Select id,nome from articoli";
$res=mysql_query($query) or die(mysql_error());
while($p=mysql_fetch_array($res)){ ?>
<option value='<? echo $p[id]; ?>'><? echo $p[nome] ?></option>
<? } ?>
</select>
</td>
<td>
<img src="img/piu.png" width="30px" height="30px">
</td>
</tr>
<tr>
<td>
QUANTITA'
</td>
<td>
<input type="text" name="quantita">
</td>
<td>
\ <? echo $p['id'];
echo $qgiacenza="select giacenza from articoli where id=\" $p[id] \"";
$resgiacenza=mysql_query($qgiacenza) or die(mysql_error());
while($g=mysql_fetch_array($resgiacenza));
echo $g;
?>
</td>
</tr>
</table>
</form>
************************************************