网络营销电子商务研究中心

网络营销电子商务研究中心 (https://www.0058.net/index.php)
-   PHP (https://www.0058.net/forumdisplay.php?f=75)
-   -   Notice: Use of undefined constant submit - assumed 'submit' in (https://www.0058.net/showthread.php?t=4374)

topvip 2012-06-29 06:51 PM

Notice: Use of undefined constant submit - assumed 'submit' in
 
问题:

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'])

============================================

问题:
Notice: Use of undefined constant Quantity - assumed 'Quantity'
in C:\wamp\www\insert.php on line 13

解决方法:
The notice your are receiving is because of this line:
if (is_numeric($_POST[Quantity]))

It should be:
if (is_numeric($_POST['Quantity']))


All times are GMT +8. The time now is 07:25 PM.

Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.