$posts = $db->query_read("SELECT * FROM post INNER JOIN thread USING(threadid) ORDER BY post.dateline DESC LIMIT 3"); while ($posts = $db->fetch_array($posts)) { echo $posts['title']; }