Does anyone know how to do this:
www.diyaudio.com
I want to show the last 20 posts like they have. They gave me this SQL syntex:
-----------------------------------------------------
SELECT t.threadid,
t.title,
t.lastposter,
t.replycount,
t.views,
t.forumid,
f.title,
t.lastpost
FROM thread AS t,
forum AS f
WHERE t.forumid = f.forumid
ORDER BY t.lastpost DESC
LIMIT 30
-----------------------------------------------------
How can i implement this into my php page? So i can show the information? Thanks in advance