I need a live chat system to support my clients and would like to write it using PHP and a MySQL, but I am not sure how to do this. Is it even possible in PHP? Any help would be great!

link|improve this question

2  
possible duplicate of How to implement Live chat on my site? – ajreal Dec 10 '10 at 17:08
You'll need javascript on the client side if you want it to be live/real-time. – FrustratedWithFormsDesigner Dec 10 '10 at 17:08
Does it need to be built from scratch? There are existing PHP chat servers you can install. Just google PHP chat. There are also some tutorials out there: tutorialized.com/tutorials/PHP/Chat-Systems/1 – EmmyS Dec 10 '10 at 17:25
feedback

3 Answers

up vote 1 down vote accepted

It is possible. PHPOpenChat

If you go through the source code for that you will get a good idea on how to create your own.

link|improve this answer
or you can just use that on your site. Why take all the pain and write something new? ;) – tHeSiD Dec 10 '10 at 20:19
To be happy to have done it and didn't just downloaded it? – Jeffrey Dec 11 '10 at 13:01
feedback

It is possible. You will need of Javascript/Ajax tool (It's more simple if you use jquery for ajax), php and mysql. Basically everything stands in the Ajax tool that allows you to send http request to the server without refreshing the page.

Here's some usefull links:

Jquery

Ajax tut

link|improve this answer
The Mootools Library is very usefull too (also good Ajax functionality) – VDVLeon Dec 11 '10 at 3:10
feedback

These links may be helpful:

EmmyS provided the links; I found them very helpful.

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.