↧
Answer by zebediah49 for Making a user profile activity feed
JOIN. It seems you know that, but here's how: SELECT * FROM comments LEFT JOIN users ON comments.user_id = users.idThus, as far as I can tell, you're trying to order two separate things at the same...
View ArticleMaking a user profile activity feed
I need to build an activity feed to go on each users profile page showing what they have been doing on the site.There is three tables: comments, ratings, usersI want the feed to include the comments...
View Article