porgramming a chat in php

Started by
1 comment, last by Gammastrahler 20 years ago
hi, i want to make a simple chat in php. but i dont know were to store the list of active users. can i do this via sessions? or is it better to save them in a file or a mysql database on my server?
Advertisement
Where do I start...?

PHP, as commonly implemented for use in web browsers, does not maintain connections between server and client. Consequently, every time one visitor posted to the chat, all the others would have no way of knowing unless they refreshed the page. You could overcome this by having the page refresh at set intervals, but then you run the risk of "refreshing away" a comment that is being typed.

In short, you''ve chosen the wrong technology. There''s a reason that web-based chat applets are written in Java. (Though you could use any language that runs on a client-side VM and maintains socket connections.)

Now if you''re talking about PHP outside the web, you have free rein.
you want to do a chat with PHP.

For you don´t changing all program you can do somthing similar with this site when users want to post they insert the comment and the login and it''s easy to do.

This topic is closed to new replies.

Advertisement