データベースに 2 つの値を送信するフォームがあります。フォームが読み込まれると、データベースに既に値があるかどうかを確認します。これらの値を使用して、ドロップダウン ボックスのデフォルトとして設定しようとしています。任意の助けをいただければ幸いです。ありがとう
<form method="post" action="add_res.php?id=<? echo $id;?>">
<fieldset>
<label>From</label>
<select name='one' id='one'>
<?
for($hours=0; $hours<24; $hours++) // the interval for hours is '1'
for($mins=0; $mins<60; $mins+=30) // the interval for mins is '30'
echo '<option>'.str_pad($hours,2,'0',STR_PAD_LEFT).':'.str_pad($mins,2,'0',STR_PAD_LEFT).'</option>';
?>
</select><br><br>
<select name='two' id='two'>
<?
for($hours=0; $hours<24; $hours++)
for($mins=0; $mins<60; $mins+=30)
echo '<option>'.str_pad($hours,2,'0',STR_PAD_LEFT).':'.str_pad($mins,2,'0',STR_PAD_LEFT).'</option>';
?>
</select>
</fieldset>
<input type="submit" value="Restrict" class="btn_searchp"></a>
</form>