创建 php/mysql/ajax 聊天
我将创建一个小项目,其中将是管理员,他必须能够与在线用户聊天(如果他在线)。
我在此类工作方面没有太多经验(例如定义用户是否在线?,或者在我的情况下创建 2 个表 message_from_admin_user 和 message from_user_admin 或一个公用表?),我需要您的帮助。
我将非常感谢您对他们的每一个意见。
I am going to create one small project,where will be admin and he must be able to chat(if he is online) with online users.
I have not a lot of experienc in such work(for example define does user online or not?, or create 2 tables message_from_admin_user nd message from_user_admin in my case or one common table?) and I need Your help.
I will be very grateful to you for every your opinion about them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用现有的解决方案,例如:https://blueimp.net/ajax/
以下内容我要定义的表:
Why don't you use an existing solution, like: https://blueimp.net/ajax/
the following tables i would define:
这是课程还是现实世界?
如果您想要从头开始做一些非常简单的事情,我建议跳过任何数据库,而只使用一个登录表单,该表单仅创建一个会话并将用户名保存在文件中。然后,另一个包含对话的文件只是作为数组移动,类似于:
尽可能简单..
注意,
//t
is it a course or real world?
If you want something really easy from scratch, I'd suggest to skip any db and just have a login-form that just creates a session and saves username in a file. Then, another file with conversation that just shift around as an array, something like:
as easy as it gets..
regards,
//t