View Single Post
  #3 (permalink)  
Old Oct 10th, 2007, 17:48
1840dsgn's Avatar
1840dsgn 1840dsgn is offline
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 20
Posts: 723
Thanks: 0
Thanked 0 Times in 0 Posts
Re: I made a Forum - Now I need help.

Quote:
Also, how would I make a 'Users Online' box? And how would I make a 'Last 5 posts' box?
For these I think...

Users Online, you'd need a checkbox or boolean field in the users table and you could do a query where it prints the names of all users whose boolean is set to online (1) AND not those who are offline (0) if that makes sense.

Last 5 posts,

Just query the place where the posts go to and grab the last 5 assuming you record the dates the posts were made you can do it like that.

Query posts, order by date descending and limit of 5, it will grab the 5 newest posts!
Reply With Quote