The columns in the phpbb_users table that I want are: user_id and username (the user_id column is the same as the to and from userid in the phpbb_privmsgs table.
I'm stuck though.
Can you fill in the blanks in my code?
Main Topics
Browse All TopicsI've got the followig code (below) that returns what I want it to. However the "From" and "To" only display as numbers whereas I want them to display as names. I've associated the phpbb_users table in the SQL statement but can't seem to find the proper verbiage to get the numbers to display as names.
I thought about creating it in an array (i.e. userid 2 = Tom, userid3 = Brian, etc.)
Any ideas?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ingwaPosted on 2008-01-11 at 08:13:38ID: 20637567
I think you are going to need to call the actual columns that contain the names instead of the ID's as you are outputting the id columns in your code. You are already doing a join to retrieve the information so it should be as simple as going to the users table, getting the correct column name and calling that.