$thread_name
thread has $thread_reply_cont $thread_reply_grammar and $thread_view_cont $thread_view_grammar
created by $thread_username; "; echo ""; echo timeago($sspindle_tstamp); echo " ago"; /* forum latest reply */ /* replier UID */ $latest_q = mysqli_query($conx, "SELECT uid,tstamp FROM forum_replies WHERE thread_id='$thread_id' ORDER BY id DESC LIMIT 1"); while($latest_r = mysqli_fetch_assoc($latest_q)) { $replier_uid = $latest_r['uid']; $reply_tstamp = $latest_r['tstamp']; /* replier username */ $latest_qu = mysqli_query($conx, "SELECT username FROM accounts WHERE uid='$replier_uid'"); while($latest_ru = mysqli_fetch_assoc($latest_qu)) { $replier_username = $latest_ru['username']; } /* replier colors */ $tusri_qq = mysqli_query($conx, "SELECT * FROM user_theme_colors WHERE uid='$replier_uid' && theme_id='$g_themeid'"); while($tusri_rr = mysqli_fetch_assoc($tusri_qq)) { $replier_color = $tusri_rr['username_color']; $replier_tcolor = $tusri_rr['text_color']; } echo "
latest post by $replier_username; "; echo ""; echo timeago($reply_tstamp); echo " ago"; } echo "
"; echo nl2br($thread_content); echo "
"; } ?>