Bạn đang thiếu IN
mệnh đề ở đó tôi cho là, cũng không cần trích dẫn đơn lẻ đó trong truy vấn phụ:
$query="select * from fsb_profile where fsb_profile.profile_id IN
(select fsb_friendlist.friendlist_friendid from fsb_friendlist
where friendlist_memberid='".$id."')";
Hoặc thử ngay cả điều này:
$query="select * from fsb_profile where fsb_profile.profile_id =
(select fsb_friendlist.friendlist_friendid from fsb_friendlist
where friendlist_memberid='".$id."')";
Đồng thời đảm bảo rằng truy vấn chạy thành công thêm mysql_error()
:
$sql=mysql_query($query) or die(mysql_error());