Notice: Undefined index: message error


Notice: Undefined index: message error

我正在尝试学习php编码,它现在击中一个障碍,因为我不断得到一个错误:

错误:注意:未定义的索引:msg在C:'xampp'htdocs'kubebook'index.php第12行

源代码:

if ($_GET['msg'] == 1)  {
echo "You have successfully registered.";
}

当您尝试引用未定义的索引或变量时,将得到该消息。在本例中,您没有将yourscript.php?msg=123参数传递给脚本,因此$_GET['msg']不存在。在查看value

之前先检查它是否设置了
if (isset($_GET['msg']) && $_GET['msg'] == 1)  {
echo "You have successfully registered.";
}