Ver Mensaje Individual
  #11 (permalink)  
Antiguo 23/11/2016, 12:35
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Update masivo php !!!!

Con todo respeto, mi código es totalmente distinto al tuyo... ve y estudia bien ambos códigos. En cuanto al id se me ocurre algo feísimo:

Código PHP:
Ver original
  1. <?php
  2.  
  3. $todoBien = true;
  4. $numero = 0;
  5. $id_n = -1;
  6.  
  7. foreach($_POST['name'] as $name){
  8. $id = $_POST["id"][$id_n++];
  9. $sql1="UPDATE $tbl_name SET name='$name' WHERE id='$id'";
  10. $result1=mysql_query($sql1);
  11.  
  12.     if(!$result1){
  13.     $numero++;
  14.     echo "Algo salió mal en el nombre y/o id número: <b>$numero</b>, nombre: <b>$name</b> | id: <b>$id</b><br/>";
  15.     $todoBien = false;
  16.     }
  17. }
  18.  
  19. if($todoBien){
  20. header("Location:index.php");
  21. }
  22.    
  23. ?>

Código HTML:
Ver original
  1. <input name="name[]" type="text" value="<?php echo $rows['name']; ?>" />
  2. <input name="id[]" type="hidden" value="<?php echo $rows['id']; ?>" readonly="readonly" />