Genero un array desde una consulta en mysql, cuando hago un submit y quiero actualizar desde ese array, no hace nada,,,como podria hacer,,,
Codigo:
Código:
Cuando Hago el post del boton:$sql = 'select * from ventas WHERE npref="'.$_POST[v_npref].'" and ncomp="'.$_POST[v_numerocomp].'" order by id'; $res = mysql_query($sql); if ($row = mysql_fetch_array($res)) echo'<table width="90%">'; echo'<tr>'; echo'<td class="texto_formulario1" bgcolor="#899198" align="center"> Campo </td>'; echo '</tr>'; $i=1; do{ echo'<tr>'; echo '<td class="texto" align="center"> '.$row[pventa].'</td> '; $indice[$j]=$row[id]; $precioventa[$i]=$row[pventa]; echo '<td class="texto" align="center"> <input name="precioventa['.$i.']" type="text" value="'.$precioventa[$i].'"></td> '; $i++; echo '</tr>'; } while ($row=mysql_fetch_array($res)); $u=$i; echo '</table> '; }
Código:
no me anda nada,,,como puedo hacer ??if ($_POST[modificar]) { for ($i=1;$i<=$u;$i++){ $sql='UPDATE ventas SET ventas.pventa ='.$precioventa[$i]; $sql.=' WHERE ventas.id ='.$indice[$i]; $res =mysql_query($sql); }
Gracias Gente..