cakephp mysql phpmyadminを使ってwebアプリケーションを作成中です。新規会員登録ページを作成しているのですが、エラーが出てしまいつまずいています。
エラー内容:Undefined index: mail [APP/Controller/EntryController.php, line 13]
Undefined index: pass [APP/Controller/EntryController.php, line 14]
Undefined index: pass2 [APP/Controller/EntryController.php, line 15]
SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'mail' cannot be null
どのようにすればエラーを解決できページを表示できますか。
cakephp
1function index() { 2 $p = $this->request->getData(); 3 $table = $this->getTableLocator()->get("user"); 4 $user = $table->newEntity(); 5 $usermail = $user->mail = $p["mail"]; 6 $userpass = $user->password = $p["pass"]; 7 $userpass2 = $user->password2 = $p["pass2"]; 8 $table->save($user); 9 $table->save($usermail); 10 $table->save($userpass); 11 $table->save($userpass2); 12 if (empty($usermail)) { 13 $errormess = "メールアドレスが入力されていません"; 14 } elseif (empty($userpass)) { 15 $errormess = "パスワードが入力されていません"; 16 } elseif (empty($userpass2)) { 17 $errormess2 = "確認用パスワードが入力されていません"; 18 } 19 if (!empty($usermail) && !empty($userpass) && !empty($userpass2) && $userpass === $userpass2) { 20 echo "登録完了しました。"; 21 } 22 } 23
cakephp
1<div id="input"> 2 <div id="mail"> 3 <label for="inputmail">メールアドレス</label> 4 <input type="text" id="inputmail" placeholder="メールアドレスを入力" name="mail"> 5 </div> 6 <div id="password"> 7 <label for="inputpass">パスワード</label> 8 <input type="text" id="inputpass" placeholder="パスワードを入力" name="pass"> 9 </div> 10 <div id="retern"> 11 <label for="inputretern">(確認用)パスワード</label> 12 <input type="text" id="inputretern" placeholder="再度パスワードを入力" name="pass2"> 13 </div> 14 <button id="enter" name="enter" onclick="location.href='<?= $this->Url->build(["controller"=>"Entry","action"=>"index"]); ?>'">登録</button> 15 </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/13 12:48
2021/01/13 19:34 編集
2021/01/14 03:23