Hola,
Probaste con hacer algo asi?
Código PHP:
Ver original$queryEstancia = mysql_query("SELECT * FROM estancia WHERE alojamientoAlojamientoID='".$rowAlojamiento["alojamientoID"]."'");
if ($queryRows == 0){
echo "No hay registros";
}else{
echo "Hay ".$queryRows." registros en tu bd";
}
Saludos!