Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
SQL select iz 3 tablice...

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side
View previous topic :: View next topic  
Author Message
Platypus



Joined: 07 Feb 2004
Posts: 235

PostPosted: 19.09.2004 13:54    Post subject: SQL select iz 3 tablice... Add user to your forum ignore list Reply with quote

$sql = "SELECT t.topic_id, t.topic_title, p.poster_id, p.post_time
FROM phpbb_topics t, phpbb_posts p
WHERE t.topic_last_post_id=p.post_id
ORDER BY topic_last_post_id DESC
LIMIT 0, 5";

jos bih trebao da mi selektira "username" iz "phpbb_users" gdje je "user_id" jednak "p.poster_id" d'oh!
Back to top
View user's profile Send private message MSN Messenger
zytzagoo
mi3.crew


Joined: 25 Aug 2003
Posts: 1842
Location: Zagreb, Hrvatska

PostPosted: 20.09.2004 09:49    Post subject: Add user to your forum ignore list Reply with quote

Najjednostavnije:
Code:
SELECT t.topic_id, t.topic_title, p.poster_id, p.post_time, u.username
FROM phpbb_topics t, phpbb_posts p, phpbb_users u
WHERE t.topic_last_post_id=p.post_id AND p.poster_id = u.user_id
ORDER BY topic_last_post_id DESC
LIMIT 0, 5;

_________________
[+]I[+]am[+]my[+]own[+]religion[+]
Back to top
View user's profile Send private message Visit poster's website Twitter profile
Platypus



Joined: 07 Feb 2004
Posts: 235

PostPosted: 20.09.2004 12:08    Post subject: Add user to your forum ignore list Reply with quote

Hvala d'oh!

Stvarno ne znam sto sam ja radio, ali mislio sam da mi to ne radi... Uglavnom, sve radi sada..
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group