Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/06/2012, 15:22
ruben_chirinos_1985
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Registrar notas de varios estudiantes con un click

Disculpe amigos en verdad noe ra mi inetcncion, pero sera que puedes hacerme el favor ede echarme una manito o q me ayudas a utilzar la logica o de como pdoria hacer ese proceso de actualizar los datos de las filas seleccionadas segun el checkbox, aqui esta unos codigos q estoy tratandod e adaptar;

Código HTML:
Ver original
  1. <?php
  2. // Connection to the database
  3. $host="localhost"; // Host name
  4. $username="root"; // Mysql username
  5. $password=""; // Mysql password
  6. $db_name="empleados"; // Database name
  7. $tbl_name="empleados"; // Table name
  8.  
  9. // Connect to server and select databse.
  10. mysql_connect("$host", "$username", "$password")or die("cannot connect");
  11. mysql_select_db("$db_name")or die("cannot select DB");
  12. $nombre=$_POST['bv'];
  13. if(isset($_POST['checkbox'])){$checkbox = $_POST['checkbox'];
  14.  
  15.  
  16. if(isset($_POST['bv']) && isset($_POST['activate'])?
  17.  
  18. $activate = $_POST["activate"]:
  19. $deactivate = $_POST["deactivate"])
  20.  
  21. $id = "('" . implode("','", $checkbox ) . "');" ;
  22.  
  23.  
  24. $sql="UPDATE empleados SET nombre = '".$nombre."', status = '".(isset($activate)?'Y':'N')."' WHERE id IN $id" ;
  25.  
  26. $result = mysql_query($sql) or die(mysql_error());
  27. }
  28.  
  29. $sql="SELECT * FROM $tbl_name";
  30. $result=mysql_query($sql);
  31.  
  32. $count=mysql_num_rows($result);
  33. ?>
  34.  
  35. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
  36. <html xmlns=" http://www.w3.org/1999/xhtml ">
  37.  
  38. <meta http-equiv="Content-Type" content="text/html; charset="utf-8"" />
  39. <title>Update multiple rows in mysql with checkbox</title>
  40.  
  41. <script type="text/javascript">
  42. <!--
  43. function un_check(){
  44. for (var i = 0; i < document.frmactive.elements.length; i++) {
  45. var e = document.frmactive.elements[i];
  46. if ((e.name != 'allbox') && (e.type == 'checkbox')) {
  47. e.checked = document.frmactive.allbox.checked;
  48. }}}
  49. //-->
  50.  
  51. </head>
  52.  
  53. <p>&nbsp;</p>
  54. <table width="400" border="0" align="center" cellpadding="0" cellspacing="1">
  55. <tr>
  56. <td><form name="frmactive" method="post" action="">
  57. <table width="400" border="1" cellpadding="3" cellspacing="0" bordercolor="#996633">
  58. <tr>
  59. <td colspan="6" bgcolor="#8BC0FF"><input name="activate" type="submit" id="activate" value="Activate" />
  60. <input name="deactivate" type="submit" id="deactivate" value="Deactivate" /></td>
  61. </tr>
  62. <tr>
  63. <td colspan="6" bgcolor="#7895B0"><div align="center"><strong>Update multiple rows in mysql with checkbox</strong> </div></td>
  64. </tr><tr>
  65. <td align="center"><input type="checkbox" name="allbox" onchange="un_check()" title="Select or Deselct ALL" style="background-color:#ccc;"/></td>
  66. <td align="center" bgcolor="#ECE9D8"><strong>Id</strong></td>
  67. <td align="center" bgcolor="#ECE9D8"><strong>Firstname</strong></td>
  68. <td align="center" bgcolor="#ECE9D8"><strong>Lastname</strong></td>
  69. <td align="center" bgcolor="#ECE9D8"><strong>Status</strong></td>
  70. </tr>
  71. <?php
  72. while($rows=mysql_fetch_array($result)){
  73. ?>
  74. <tr>
  75. <td align="center" bgcolor="#C5D5FC"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<?php echo $rows['id']; ?>"></td>
  76. <td bgcolor="#C5D5FC"><?php echo $rows['id']; ?></td>
  77. <td bgcolor="#C5D5FC"><input name="bv" type="text" id="bv" value="<?php echo $rows['nombre']; ?>" size="5" maxlength="4" /></td>
  78. <td bgcolor="#C5D5FC"><?php echo $rows['apellido']; ?></td>
  79. <td bgcolor="#C5D5FC"><?php echo $rows['status']; ?></td>
  80. </tr>
  81. <?php
  82. }
  83. ?>
  84. <tr>
  85. <td colspan="6" align="center">&nbsp;</td>
  86. </tr>
  87. </form>
  88. </td>
  89. </tr>
  90. </body>
  91. </html>