/* Select the data we need to display the on the front page */ SELECT posts.id, posts.post_title, posts.isanon, posts.post_time, authors.name, posts.views FROM posts, authors WHERE posts.authorid = authors.id AND posts.unlisted = 0 ORDER BY posts.post_time DESC LIMIT 50;