![]() |
MySQL: Getting Username from UserID
Hi guys,
I am working on a plugin which will show the latest awards recently given, but the database does not contain the member's username. It only contains the user ID. Is there a way to get the username from the userID? Here is my current code: PHP Code:
|
[sql]SELECT award_user.issue_id, award_user.award_id, award_user.userid, award_user.issue_reason, award_user.issue_time, user.username
FROM " . TABLE_PREFIX . "award_user AS award_user LEFT JOIN " . TABLE_PREFIX . "user AS user ON (userid) ORDER BY issue_id DESC LIMIT $limit[/sql] |
MMM for some reason this isn't giving me any results back... Sorry I'm new to this mySQL stuff!
|
Sorry, wrong query.
[sql]SELECT award_user.issue_id, award_user.award_id, award_user.userid, award_user.issue_reason, award_user.issue_time, user.username FROM " . TABLE_PREFIX . "award_user AS award_user LEFT JOIN " . TABLE_PREFIX . "user AS user USING (userid) ORDER BY issue_id DESC LIMIT $limit[/sql] Replace your query with mine, then you can access the username using $row['username']. |
Ahh! Works great!!!! Thanks so much !!! :D Now the fun part begins .... editing the templates :)
|
All times are GMT. The time now is 07:02 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|