Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从一个名为“数据”的表单中获取一个变量,然后我将它的值转换为名为 $view $view=$_POST['data']; 的变量我正在使用变量 $view 来确定消息的接收者并将其插入到数据库中。我一切都很好,值被插入到数据库中,但我仍然从服务器Undefined index: data收到此错误消息。我怎样才能摆脱该消息以及为什么它在代码正常工作时显示?
$view=$_POST['data'];
post 变量data不存在。您可以设置$view变量,例如:
data
$view
$view = !empty($_POST['data']) ? $_POST['data'] : false;