php初心者です。
以下のコードで性別が未選択だった場合にエラー表示がされるようにしたいです。
どのようにコードを書けばいいかわからず困っています。
書き方を教えていただけると幸いです。
よろしくお願いいたします。
PHP
1<?php 2session_start(); 3 4if ($_POST['height'] === '') { 5 $error['height'] = 'blank'; 6} 7 8if ($_POST['weight'] === '') { 9 $error['weight'] = 'blank'; 10} 11 12if ($_POST['age'] === '') { 13 $error['age'] = 'blank'; 14} 15 16if (empty($_POST['gender'])) { 17 $error['gender'] = 'blank'; 18} 19?>
php
1<form action="" method="post"> 2 <div class="row"> 3 <div class="col-12 col-sm-6"> 4 <div class="form-select"> 5 <label class="text">身長</label> 6 <input type="height" name="height" id="" value= 7 "<?php print(htmlspecialchars($_POST['height'], ENT_QUOTES)); ?>"> 8 <?php if ($error['height'] === 'blank'): ?> 9 <p class="error">※身長を入力してください</p> 10 <?php endif; ?> 11 </div> 12 </div> 13 14 <div class="col-12 col-sm-6"> 15 <div class="form-select"> 16 <label class="text">体重</label> 17 <input type="weight" name="weight" id="" value= 18 "<?php print(htmlspecialchars($_POST['weight'], ENT_QUOTES)); ?>"> 19 <?php if ($error['weight'] === 'blank'): ?> 20 <p class="error">※体重を入力してください</p> 21 <?php endif; ?> 22 </div> 23 </div> 24 </div> 25 26 <div class="age-sex"> 27 <div class="row"> 28 <div class="col-12 col-sm-6"> 29 <div class="form-select"> 30 <label class="text">年齢</label> 31 <input type="age" name="age" id="" value= 32 "<?php print(htmlspecialchars($_POST['age'], ENT_QUOTES)); ?>"> 33 <?php if ($error['age'] === 'blank'): ?> 34 <p class="error">※年齢を入力してください</p> 35 <?php endif; ?> 36 </div> 37 </div> 38 <div class="col-12 col-sm-6"> 39 <div class="gender"> 40 <label class="textl">性別</label> 41 <input type="radio" name="gender" value="1"> 42 <label>男性</label> 43 <input type="radio" name="gender" value="2"> 44 <label>女性</label> 45 </div> 46 </div> 47 </div> 48 </div> 49
ご自身で試されたコードを質問文に追記し、「何」が「どのように」わからないのか、コードのどの部分で詰まっているのかなどを具体的に追記されたほうが回答が望めると思います。