I'm trying to add query fo field (autocomplete list) to connect to external database of phpBB forum to get usernames from specific group. This is my query:
SELECT 'username'
FROM 'bbforum_users'
WHERE 'group_id' = '6'
I connected to external database with proper credentials. Is there anything else I must do?
At the same time I would like to link those values (users) to their phpbb profile. URL looks like this http://www.yoursite.com/memberlist.php?mode=viewprofile& ;u=user
I'm trying to add query fo field (autocomplete list) to connect to external database of phpBB forum to get usernames from specific group. This is my query:
SELECT 'username'
FROM 'bbforum_users'
WHERE 'group_id' = '6'
I connected to external database with proper credentials. Is there anything else I must do?
At the same time I would like to link those values (users) to their phpbb profile. URL looks like this http://www.yoursite.com/memberlist.php?mode=viewprofile& ;u=user