Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4617728
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:09:56+00:00 2026-05-22T02:09:56+00:00

I am making a small forum. What i want is when listing the topics

  • 0

I am making a small forum. What i want is when listing the topics of a forum, to show the username and avatar of both of the person who made the topic and of the person who has last replied.

The current query (which currently only finds the avatar+username of the creator of topic) is:

SELECT 
    forum_topics.primkey,
    forum_topics.title,
    forum_topics.creatorid, 
    forum_topics.last_reply_poster, 
    users.username,
    users.avatar,
    forum_tracks.lastmark 
FROM 
    users,
    forum_topics 
    LEFT JOIN forum_tracks 
        ON forum_tracks.userid='".$_SESSION['loggeduserkey']."' 
        AND forum_tracks.topic_id=forum_topics.primkey 
WHERE 
    forum_topics.cat_id='".$forum_id."' 
    AND users.userkey=forum_topics.creatorid 
ORDER BY ...;

So, how can i modify the above query so to find also the username+avatar of last_reply_poster(id of the user)?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T02:09:57+00:00Added an answer on May 22, 2026 at 2:09 am

    You have to join the users table in twice:

    SELECT 
        forum_topics.primkey,
        forum_topics.title,
        forum_topics.creatorid, 
        forum_topics.last_reply_poster, 
        users.username,
        users.avatar,
        u2.username,
        u2.avatar,
        forum_tracks.lastmark 
    FROM 
        users,
        users as u2,
        forum_topics 
        LEFT JOIN forum_tracks 
            ON forum_tracks.userid='".$_SESSION['loggeduserkey']."' 
            AND forum_tracks.topic_id=forum_topics.primkey 
    WHERE 
        forum_topics.cat_id='".$forum_id."' 
        AND users.userkey=forum_topics.creatorid
        AND u2.userkey=forum_topics.last_reply_poster
    ORDER BY ...;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a small system for personal use on that I want to handle
I am making a small blog for someone and they want it in 2
I'm making a web service in the form of a small forum for a
I'm an ASP.NET developer who has been assigned a small Winforms application task. I'm
I am a PHP newbie, but I'm making progress. I have made a small
I've been making small scale projects for a while now. I haven't started a
im making a small smiley script , what it does is to change ::1::
I'm making a small webpage that is going to execute links, en specifics magnet
I'm making a small online game, where (what do you know) there'll be multiple
I am current making some small JS game in Netbeans and I have started

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.