tags:

views:

99

answers:

2

Any suggestions for simple voice chat solution for a PHP based website. We already have a text chat in place, client now wants voice chat too.

+1  A: 

Voice chat simply isn't going to happen with PHP. Such a thing requires a dedicated chat server/service; your client may be interested in something like Skype for Business or Google Talk. Both of these things (as I recall) will require an out-of-browser product to be installed.

Adam Maras
Using third party tool is not an issue but it should be tightly integrated with the website, such as I should be able to login to voice chat from the website itself. Is it possible?
abhi
Sure it is possible, and PHP can even broker the data in some cases, but if you're looking at "real-time" voice, you're getting into protocols non-HTTP where PHP doesn't necessarily play.
Xepoch
+2  A: 

You could problably use Adobe flash.

PHP can solve alot of problems but not anything like voice chat.

nullptr