JQuery / PHP聊天客户端帮助

时间:2010-08-05 03:30:15

标签: php jquery chat

我在CSS-Tricks上找到了很酷的聊天教程。 (http://css-tricks.com/chat2/

我试图使用它。每次我运行它,当它在聊天室中询问时我输入我的名字。它只显示了这段代码:

Great! You found a username not in use"; $data['inuse'] = "notinuse"; } else { $data['result'] = "
That username is already in use. (Usernames take 2 minutes without use to expire)
"; $data['inuse'] = "inuse"; } echo json_encode($data); } } else { $username = cleanInput($_POST['userid']); if (checkVar($username)) { $getUsers = "SELECT * FROM chat_users WHERE username = '$username'"; if (!hasData($getUsers)) { $now = time(); $postUsers = "INSERT INTO `chat_users` ( `id` , `username` , `status` , `time_mod` ) VALUES ( NULL , '$username', '1', '$now' )"; mysql_query($postUsers); $_SESSION['userid'] = $username; header('Location: ./chatrooms.php'); } else { header('Location: ./?error=1'); } } } ?>

我想知道问题是什么。随机,但这可能有助于其他人:c)

请记住,我爱你们!

1 个答案:

答案 0 :(得分:2)

您能够看到PHP代码的事实表明PHP没有处理这个特定文件,只是将文件作为纯HTML发送。可能是您的服务器配置错误,无法运行PHP脚本,或者该文件的扩展名与PHP无关。

其他原因可能是脚本的文件权限错误,通常这些权限必须设置为0755。