If you had 10 administrators and 40 members, you would aready have 400 lines in your result set.
Guess what, the day you have 10000 members ...
What you need is a UNION of seperate queries on members and administrators:
SELECT pp_members.member_user AS username, pp_members.member_email AS email
FROM pp_members
union
pp_administrators.admin_user AS username, pp_administrators.admin_email AS email FROM pp_administrators
You can use "union all" to display data twice for people being in both tables.
(Curious thing, its the second time in a couple of minutes that I suggest the usage of UNION ...)
JJ Mouris