私は2種類の選択リストメニューを持っています:
<select name="category">
<option>----Select----</option>
<option>Category 1</option>
<option>Category 2</option>
<option>Category 3</option>
<option>Category 4</option>
</select>
<select name="category_product">
<option>----Select----</option>
<option>Product of category 1</option>
<option>Product of category 1</option>
<option>Product of category 1</option>
<option>Product of category 1</option>
</select>
私が気に入ったのは、選択リスト メニューの「Category 1」を選択すると、選択リスト メニュー「category_product」がエコーされることです。これを行うにはどうすればよいですか?
category_product リスト メニューを変数に入れることを考えていました。カテゴリを選択すると、category_products リスト メニューがエコーされますが、カテゴリが選択されたときにこれを検出する方法がわかりません。
いくつかの助けを願っています