Suchen:
Code: Alles auswählen
//
// Go ahead and pull all data for this topic
//
$sql = "SELECT u.* ,u.user_allow_viewonline, u.user_session_time, u.user_items, u.user_gender, p.*, pt.post_text, pt.post_subject,u.user_rank, pt.bbcode_uid, t.topic_poster
FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt, " . TOPICS_TABLE . " t
WHERE p.topic_id = $topic_id
$limit_posts_time
AND pt.post_id = p.post_id
AND u.user_id = p.poster_id
Code: Alles auswählen
//
// Go ahead and pull all data for this topic
//
$sql = "SELECT u.* , p.*, pt.post_text, pt.post_subject, pt.bbcode_uid, t.topic_poster
FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt, " . TOPICS_TABLE . " t
WHERE p.topic_id = $topic_id
$limit_posts_time
AND pt.post_id = p.post_id
AND u.user_id = p.poster_id
AND t.topic_id = p.topic_id