PDA

View Full Version : How do i know who has made the 100,000 post?


mcyates
05-18-2003, 07:22 AM
My forum is close to reaching 100,000 posts. i'm wondering how i will be able to determine who the member is who has made the 100,000 post? Is there a hack or anything which would let me know.

Xenon
05-18-2003, 09:34 AM
an sql query would do the trick:

SELECT username
FROM post
ORDER BY dateline ASC
LIMIT 100000,1

mcyates
05-18-2003, 09:53 AM
thanks mate

mcyates
05-18-2003, 10:02 AM
tht didn't actually do anything it just said:

Your SQL-query has been executed successfully

SQL-query : [Edit] [Explain SQL] [Create PHP Code]
SELECT username
FROM post
ORDER BY dateline ASC
LIMIT 100000 , 1

Dean C
05-18-2003, 10:08 AM
Make sure you have the semi colon on the end :)

- miSt

Xenon
05-18-2003, 11:02 AM
Your SQL-query has been executed successfully

well if you don't hav 100000 posts right now it wouldn't show anything :)

mcyates
05-18-2003, 11:27 AM
oh that will be why then. Thanks a gain for the quick reply