Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in
解决办法
主要原因是书写不规范导致的错误
如:将$_GET[id] 改为 $_GET['id'] 或者 $_POST[id] 改为 $_POST['id']
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in
解决办法
主要原因是书写不规范导致的错误
如:将$_GET[id] 改为 $_GET['id'] 或者 $_POST[id] 改为 $_POST['id']
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。