Gazan Posted January 22, 2008 Share Posted January 22, 2008 Alright I'm working on creating my own php forum now, but i got stuck during the show topic page. I'd like to do a while to show the replies, and in the while i would like to show the users profile avatars. $query = mysql_query("SELECT * FROM replies WHERE topic_id = '".$topicid."'"); while($row = mysql_fetch_assoc($query)) { $replierid = $row['replier_id']; $reply = $row['message']; $replierdate = $row['replier_date']; echo " <table align=center width=420 cellspacing=0 cellpadding=0> <tr> <td align=left>"; $query = mysql_query("SELECT * FROM users WHERE id = '".$replierid"'"); $row = mysql_fetch_assoc($query); $repliername = $row['username']; echo $repliername; echo "<br>"; Can you tell me why that doesn't work ? What im trying to do is to select the user information, in the while. Is that just not possible? - if so, how do i do it then? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/87268-need-help-doing-a-topic-preview-with-while/ Share on other sites More sharing options...
beebum Posted January 22, 2008 Share Posted January 22, 2008 First, I would echo out the table tag prior to the while. Second, I would grab all the data with one query using a join. Quote Link to comment https://forums.phpfreaks.com/topic/87268-need-help-doing-a-topic-preview-with-while/#findComment-446393 Share on other sites More sharing options...
Gazan Posted January 22, 2008 Author Share Posted January 22, 2008 Could you explain a little further? I'm not that experienced (; Quote Link to comment https://forums.phpfreaks.com/topic/87268-need-help-doing-a-topic-preview-with-while/#findComment-446399 Share on other sites More sharing options...
beebum Posted January 22, 2008 Share Posted January 22, 2008 I assume you are asking about the join since the table tag should be obvious. http://dev.mysql.com/doc/refman/5.0/en/join.html Quote Link to comment https://forums.phpfreaks.com/topic/87268-need-help-doing-a-topic-preview-with-while/#findComment-446410 Share on other sites More sharing options...
Gazan Posted January 22, 2008 Author Share Posted January 22, 2008 Figured it out, thanks a lot! Quote Link to comment https://forums.phpfreaks.com/topic/87268-need-help-doing-a-topic-preview-with-while/#findComment-446415 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.