Does anyone know how I can make a live chat on a webpage? Maybe using PHP and have the text stored into a database? If so, how could I get the text to automatically show on the users live chat, without refreshing?

Any ideas? Thanks.

link|improve this question

4  
possible duplicate of stackoverflow.com/questions/1302271/… – ax. Apr 21 '10 at 15:31
+1 for dupe detect – zaf Apr 21 '10 at 15:35
feedback

7 Answers

See Free PHP-AJAX Chat applications:

http://www.ajaxlines.com/ajax/stuff/article/free_phpajax_chat_applications_.php

link|improve this answer
feedback

I'm guessing you're after something like Facebooks wonderful (ahem) Livechat system. I don't often suggest using an out of the box solution, but due to the fact there's a lot of stuff to think about if you want a reliable/stable chat system, I think it could be your best bet.

I've heard good things about AjaxIM, I've not developed with it but it looks well documented.

link|improve this answer
feedback

While regularly polling the server works, it adds a lot of overhead. GMail, Facebook and the likes use Comet, which is a technique of keeping a HTTP request open for a long time so the server is able to push data to the client. This is assuming you want to do it without depending on a plugin.

If a plugin is no problem, you are better off with Flash, or a Java applet.

link|improve this answer
-1 for java/flash. – Tchalvak Jul 12 '11 at 15:03
feedback

There are dozens of existing solutions, basically you need some javascript which will update the chat after fetching updates from server.

link|improve this answer
feedback

Without refreshing... hmm... AJAX!

link|improve this answer
feedback

Use ajax to send and display messages. When a user sends a message, ajax goes to the server and store the message. To display messages, poll the server using ajax every few seconds to check for new messages. If new messages are found, display them.

link|improve this answer
Gross oversimplification that will result in trouble down the line. – Tchalvak Jul 12 '11 at 14:45
feedback

Flash or JavaScript&Ajax. It is not so complex.

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.