Hi,I have this query: $emparray = array(); $empquery = 'select distinct(o.name) from ost_ticket t, ost_user u, ost_organization o where t.user_id =u.id and u.org_id=o.id'; $empexquery = db_query($empquery); $emparray = db_result($empexquery,0,"name");Since the query returns multiple rows the $emparrys doens't work. I haven't got much experirience in php so can you please help me get these rows into an array and print them from 1 to 20? (I only want 20 orgs, i'll sort them later in that query).Thanks!