Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/09/2013, 10:39
bathorz
 
Fecha de Ingreso: agosto-2013
Mensajes: 150
Antigüedad: 11 años, 3 meses
Puntos: 29
Respuesta: Insertar Registros con Foreach

Que tal si aprovechas el while para hacer el cambio.
Código PHP:
Ver original
  1. while ($Res1 = mysql_fetch_array($Query)) {
  2.    echo "<form name='form1' method='post' action=''>";
  3.    echo "<input type='hidden' name='Id' value='" . $Res1['Id'] . "' />";
  4.    echo "idFor: <input type='text' name='idFor' value='" . $Res1['idFor'] . "' />";
  5.    //...piezas, concepto, precio y total...
  6.    echo "<input type='submit' value='Cambiar' name='Cambiar' />";
  7.    echo "</form>";
  8. }
  9. // Prueba
  10. if (isset($_POST['Cambiar'])) {
  11.    echo "UPDATE tabla usuarios SET idFor='" . $_POST['idFor'] . "' WHERE Id='" . $_POST['Id'] . "';";
  12. }