使用php与多个会话聊天

时间:2012-07-21 01:44:34

标签: php

我正在尝试在我的网站上创建一个私人聊天模块。但我无法得到其他用户的会话。任何人都可以帮我吗?

这是代码:

$url1 = 'onclick="window.open(\'../chat/index.php?do=chat&room_owner='.$uname.'&user='.$_SESSION['uname']['username'].'\',\'pop_up\',\'toolbar=no, top=0,location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=450\')"';
                    $image_path = "images/online.png";
                    $status = 'Online';

1st user(me): ?do=chat&room_owner='.$uname.' >this is working

2nd user(recipient): &user='.$_SESSION['uname']['username'].' > this is not working?

1 个答案:

答案 0 :(得分:0)

变量的uname和用户名是什么? 两个用户之间的沟通如何完成? 您正在使用哪个聊天模块? 在上述问题中究竟是什么'不工作'? 什么应该是$ _SESSION ['uname'] ['用户名']? 你实际上可以打印出这个变量的值,看它是否有任何内容:

echo "debug: ".$_SESSION['uname']['username'];