Log in

View Full Version : recent posts


suj
02-12-2005, 06:34 PM
Hi i need to display the last 10 posts on a html page or php page which shows the last 10 posting on the forums.

Anywhere I can get this hack?

I am using vb3.0.1

Deaths
02-13-2005, 06:28 AM
There is a hack which does this, I'm sure.

Search and ye shall find.

miz
02-13-2005, 08:33 AM
simple query can do it :

for posts
SELECT * FROM POSTS ORDER BY TIME DESC LIMIT 10


or threads

SELECT * FROM THREAD ORDER BY ID DESC LIMIT 10