Mysql has a nifty function for it: group_concat
Like in
select org_name, group_concat(activity_name)
from organisation o, activities a, org_activity oa
where o.org_id=oa.org_id
and oa.activity_id=a.activity_id
group by o.org_id
;
(Code not tested)
Alternatively you may look at the various JOIN syntax varieties of MySQL.