0 Users appreciate this thread.
I <3 PHP!
roxasmaker (2012-05-28 21:13:51)How do i add forums and chat?
Sup, I'm here!
Follow me on Twitter: @r0xasmaker
Follow me on Twitter: @r0xasmaker
11Drago (2012-05-29 02:49:31)Chat is basically a status with AJAX and a user online. Forums is all linking, inserting and selecting. If you know how to make blogs then forums should be easier.
11Drago (2012-06-02 12:27:31)For users online, add two fields in the database. Online and Last online.
Online varchar(3),default 'No',
Last_online varchar(25),
After doing that, when users login update users set online to yes and last_online to the time. Whenever, a user goes to a page update last_online and if their last online is less than the actual time, then log them out. It's really amazing that 3 minutes ago, I didn't know how to make users online.
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
@MarioErmando set a new time field in the database and update it every time a user loads into it, then just check where the user was refreshed less than 5 mins ago