How to implement a chat room using Jquery/PHP?

前端 未结 10 1750
抹茶落季
抹茶落季 2020-12-02 07:12

I\'m looking to implement a chat room using PHP/Javascript (Jquery) with both group chat and private chat features.

The problem is how to continually update the inte

10条回答
  •  爱一瞬间的悲伤
    2020-12-02 07:47

    I suggest to implement it with HTML5 WebSockets, with long polling or comet as a fallback for older browsers. WebSockets open a persistent connection to the browser. There is an open source php implementation of a websocket server.

提交回复
热议问题