How can I know how many user do I have online in my website.
User are conected via a mySQL account and than a session is created.
Thank you
Insert all sessions into a table also with maybe lastactive. If the lastactive is over a certain time delete it. But to count them just use mysql_num_rows(); for it.
Search the forums for users online for more details.