Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/09/2009, 08:51
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 8 meses
Puntos: 2135
Respuesta: Ayuda Checkbox y tablas DB

Pues un simple if te serviria:
Código PHP:
Ver original
  1. if (isset($_POST['check1']))
  2. {
  3.           // Insert into table 1 con mysql_query
  4. }
  5. if (isset($_POST['check2']))
  6. {
  7.           // Insert into table 2 con mysql_query
  8. }

Saludos.