echo "<pre>"; $result = mysql_query("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"); while ($bits = mysql_fetch_array($result)) { print_r($bits); }