I want to build a chat application using PHP. Does anybody have any idea about it? If so please reply. The chat application must be user friendly, multiple chatting scenario must be there.

link|improve this question

0% accept rate
feedback

3 Answers

Sounds pretty straight forward.

Ajax-polling front-end -> chat_handler.php -> backend database

Done.

link|improve this answer
exactly. i've done a bunch of them just for my own pleasure :) – Jacob Relkin Jan 13 '10 at 4:34
I did a school project that did exactly that. For an art class even. – Ignacio Vazquez-Abrams Jan 13 '10 at 4:38
To be fair, it was a computer art class, and it had a Director movie where parts would change based on keywords said in the chat. – Ignacio Vazquez-Abrams Jan 13 '10 at 5:04
Sounds like some video-mashup nightmare! – Aiden Bell Jan 13 '10 at 5:04
feedback

If you want to create a "Shoutout" type public chat system, it's pretty easy to achieve via PHP/MySQL/jQuery.

You just have to take input from a form. jQuery will submit values to a database via a backend php file.

To refresh the submitted messages after regular intervals you can use setInterval function availabe in jQuery.

Maybe this will help: http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-simple-web-based-chat-application/

link|improve this answer
feedback

just buy one if you don't want to code. Comet Chat is a good one, like Faceb00k. Just google

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.