Thank you again Dickersonka,
I thought I had, as you suggested, but I'm still not making a connection to the avatars table.
Here's my table layout
Avatars
-------------------------------
avatar_id | user_id | pic
----------- |----------|-------
Members
----------------------------------------------------
user_id | memberfname | memberlname
---------| ----------------- | ----------------
The default 'pic' has a avatar_id of 1 and a user_id of 1( there are no members.user_id near that range.)
and here is the query I'm working with
$result=mysql_query("select
members.user_id,
members.memberfname,
members.memberlname,
coalesce(avatar_id, 1) as avatar_id
from members
left join avatars on members.user_id=avatars.user_id where members.user_id='{$user_id}'");
Can you see why this might not be working? I'm in a little over my head.
Thanks again!