SELECT title, news_body, date FROM bg ORDER BY date DESC LIMIT 0 , 3
SELECT = what you are getting
FROM = where date comes from
ORDER BY = what to sort by
DESC = descending order (ASC would be ascending)
LIMIT 0,3 = return items 0 - 3 (3 items) in that order can also LIMIT 3,6 (return items 3 - 6)