Okay, i almost have it, i think. Now i'm confused with this bit of code:
SELECT *, DATE_FORMAT(lastpost_date,'%H:%i %d %M %y') AS f_lastpost_date
FROM table_name
ORDER BY lastpost_date DESC
from what i can see this pulls the data out of the db according to f_lastpost_date. how can i use this formatted date to display on the page? ie
<?php echo f_lastpost_date; >?
thanks