Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/02/2017, 13:19
cabeto_1972
 
Fecha de Ingreso: marzo-2004
Mensajes: 199
Antigüedad: 20 años, 1 mes
Puntos: 1
Respuesta: Consulta diversos items

No tengo mucho, solo esto

Aquí hago la consulta para q me muestro los Artistas

$query = "select * from artistas order by artista";
$art = mysqli_query($conn, $query);
$arts = mysqli_fetch_assoc($art);

Aquí el formulario
<form action='bsq.php' method='post'>
<?php do{?>
<div>
<input type="checkbox" name="<?php echo $arts['id']?>" id="<?php echo $arts['id']?>" value='1'/>
<label><?php echo $arts['artista']?></label>
</div>
<?php }while(mysqli_fetch_assoc($art))?>
</form>
en el form a cada check tiene como id y nombre el id del artista

pero pues no se como tomar todos los valores y decirle q me busque solo los que estan marcados