Muhammad Bilal
Muhammad Bilal

Reputation: 2124

Need a php based chat script to provide website members chat functionality with visitors

I want a chat script through which each registered member can independently chat with the visitors on the site.

What i want is something like trade manager on tradekey.

Upvotes: 0

Views: 1158

Answers (3)

Will
Will

Reputation: 1345

www.blueimp.net is Ajax open source chat.

Upvotes: 1

Cybercartel
Cybercartel

Reputation: 12582

php has web-socket and support forking, too. it is just not that academic language!

Upvotes: 0

ThiefMaster
ThiefMaster

Reputation: 318458

PHP is one of the worst things you can use for that. If you want a chat, embed an AJAX-based IRC chat (qwebirc for networks like gamesurge, freenode and quakenet; mibbit for others) or if it has to be a purely web-based chat use something that actually runs a chat server daemon so it can use techniques like COMET/long-polling and doesn't have to hammer your server with requests to check if something new has been written.

Upvotes: 4

Related Questions