C'è qualcuno in grado di farmi sapere dove sbaglio.
Questo è lo script
Codice PHP:
$sql="SELECT * FROM retribuzione WHERE CAT ='A1'";
$result=mysql_query($sql) or die(mysql_error());
while ($row=mysql_fetch_assoc($result)){
echo "<form name=form1 method=POST >";
echo "INDENNI";
echo "<input type=text name=INDENNI value=0>";
echo "RIA";
echo "<input type=text name=RIA value=0>";
echo "<input type=submit name=Submit value=Calcola>";
echo "</form>";
//calcolo Retribuzione ORARIA H
$ret_ora = (($row['RET_BASE'] + $row['DIFF_IIS'])/12)/156;
//QUESTA è LA LINEA 45
$micio = $ret_ora + $_POST['INDENNI'];
$micio = number_format($micio, 2, ',', '.');
echo "H Retribuzione Oraria". " " .$micio;
}
questo è l'errore che si presenta
Notice: Undefined index: INDENNI in C:\siti on line 45
Ciao Micio1980