Ver Mensaje Individual
  #8 (permalink)  
Antiguo 03/12/2009, 13:22
ferranWEB
 
Fecha de Ingreso: enero-2002
Mensajes: 1.872
Antigüedad: 22 años, 10 meses
Puntos: 3
Respuesta: Ayuda con checkbox para hacer diferentes acciones (tipo hotmail)

te paso el codigo del form y del hidden y del post checkbox

Código HTML:
 <form action ='' method='POST' name="form" id="form">
.......
<input type="checkbox" name="eliminar[]" id="eliminar[]" value=<? echo $row['id_producto'];?>>
<input type="hidden" name="accion" id="accion" value=""/>
       <input type="submit" name="button" id="button" value="Tramitar" onClick="document.form.accion.value='add' ; document.form.action='report2.php'; document.form.submit()";/>
...
</form>