i'm making a small msg board, and im tryin to figure out how to list
the posts from newest to oldest instead of the other way around.
my current table is this:
create table mgs (
id int(11) not null auto_increment,
date int(11) not null,
msg text,
primary key(id)
);