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. Codeigniter Select_Sumは数値ではなく配列を返しますか?

    2. OracleAutonomousTransactionの例

    3. count関数を使用して、ifステートメントに何が表示されるかを判別します

    4. ユーザーオプションに基づくPHPを使用した動的SQLSELECTステートメント