Código PHP:
<?
$get_integrantes=mysql_query("SELECT * FROM integrantes_bandas AS ib LEFT JOIN instrumentos AS i ON i.id_instrumento=ib.instrumento_integrante WHERE ib.banda_integrante='".$idbanda."' ORDER BY ib.instrumento_integrante");
while ($row = mysql_fetch_array($get_integrantes))
{
echo "<b>".$row['nombre_integrante']."</b><br>".$row['nombre_instrumento']."";
if ($row['instrumento_integrante2'] != '')
{
$get_integrantes2=mysql_fetch_array(mysql_query("SELECT * FROM integrantes_bandas AS ib LEFT JOIN instrumentos AS i ON i.id_instrumento=ib.instrumento_integrante2 WHERE ib.banda_integrante='".$idbanda."' ORDER BY ib.instrumento_integrante"));
echo " / ".$get_integrantes2['nombre_instrumento']."";
}
echo "<br><br>";
}
?>
Tienen idea?
Saludasos