PHP简易聊天室&调试问题

在进入login.php程序之后

<?php

error_reporting(E_ALL^E_NOTICE);

session_start();  //装载Session库,一定要放在首行

$user_name=$_POST["nick"];

//session_register("user_name"); //注册$user_name变量,注意没有$符号

$_SESSION['user_name']; ?>

<!--chat.php:My聊天室主页面----------------------->

<html>

<title>My聊天室</title>

<frameset rows="80%,*">

<frame src="chat_display.php" name="chat_display">

<frame src="speak.php" name="speak">

</frameset>

</html>

在调试过程中出现:Undefined index:user_name

在程序前面加上error_reporting(E_ALL^E_NOTICE);就可以避免错误啦

原文地址:https://www.cnblogs.com/imysql/p/5021624.html