Notice: Use of undefined constant submitassumed 'submit'
符号
阅读:764
2021-04-01 10:03:45
评论:0
Notice: Use of undefined constant submit - assumed 'submit' in D:\wamp\www\ECMS\insert\monitors.php on line 66
Notice: Undefined index: submit in D:\wamp\www\ECMS\insert\monitors.php on line 66
1: if($_POST['submit']) 加一个判断条件,改为=>
if(isset($_POST['submit']) && $_POST['submit'])
2: 在开头加上
error_reporting(E_ALL & ~E_NOTICE); // 这句话表示提示除去 E_NOTICE 之外的所有错误信息
因为post数组是个空的array,而代码中的这种方法适用于的是提交以后。
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。