What is the best PHP chat room class? #chat room
Edit
by Fortune James - 8 years ago (2016-06-25)
I need a simple chat package
| I need of a simple chat room package written in PHP and JavaScript. |
- 1 Clarification request
1.
by ali moradi - 8 years ago (2017-01-10) Reply
Ask clarification
2 Recommendations
This package can Websocket chat that stores messages in MySQL using PDO.
It takes HTTP Websocket connections to handle chat messages exchanged between users in a chat room.
It also supports exchanging messages privately between users.
| by Johnny Mast package author 185 - 8 years ago (2016-10-16) Comment
You also use this package. It uses web sockets and works out of the box. |
Simple PHP Web Chat: Chat system with Websockets or AJAX as fallback
This package implements a chat system with Websockets or AJAX as fallback.
It generates HTML with JavaScript to connect to a chat server using Websockets.
It falls back to AJAX long polling requests if Websockets are not supported by the user browser version.
It provides the following features:
- Registration, login and password recovery of the users
- Search, add and group user contacts
- Broadcast messages to groups of users
- Desktop notifications, sound alerts, automatic scroll to new messages
- Exchange files between users
- Multiple chat sessions in different tabs
- Keep the history of old chat messages
- File Attachments
- Desktop notifications, sound alert, auto scroll to message
- Audio and video chat using WebRTC
By default it works with files for storage so it does not require a database server.
| by Manuel Lemos 26695 - 8 years ago (2016-06-28) Comment
This package is very complete. I works with WebSockets but it can fallback to AJAX if WebSockets are not available. |