Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

डेटाबेस में चयनित चेक बॉक्स जोड़ना-PHP

कृपया निम्नलिखित को लागू करने का प्रयास करें और उम्मीद है कि आप देखेंगे कि त्रुटि कहां है। तब हर शरीर मदद करने में प्रसन्न होगा...

इस समस्या से निपटने के तरीके:

1.Recommended: Declare your variables. Or use isset() to check if they are declared before referencing them.
2.Set a custom error handler for E_NOTICE and redirect the messages away from the standard output (maybe to a log file). set_error_handler('myHandlerForMinorErrors', E_NOTICE | E_STRICT).
3.Disable E_NOTICE from reporting. A quick way to exclude just E_NOTICE is error_reporting( error_reporting() & ~E_NOTICE ).
4.Suppress the error with the @ operator.

नोट:केवल बिंदु 1 को लागू करने की दृढ़ता से अनुशंसा की जाती है।




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Laravel 5.4 में पिवट टेबल को कैसे सीड करें?

  2. अपवाद प्राप्त करना सभी कोड पथ एक मान नहीं लौटाते हैं

  3. java.sql.SQLException:परिणाम सेट की शुरुआत से पहले

  4. उन पंक्तियों के परिणामों को छोड़ दें जिनका किसी भी क्षेत्र में NULL मान है?

  5. हर 24 घंटे में चलने वाली घटना कैसे बनाएं?