0

我正在尝试在我的网站上创建一个私人聊天模块。但我无法获得其他用户的会话。谁可以帮我这个事?

这是代码:

$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?
4

1 回答 1

0

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

echo "debug: ".$_SESSION['uname']['username'];
于 2012-07-21T01:52:03.307 回答