我有2个<代码><select>1个为类别,第二个为次类。
此处为第一类:<代码><select>。
<select name="category" size="10">
<?php foreach($categories->fetch(array( table => categories )) as $category) { ?>
<option value="<?php echo $category[ id ]; ?>"><?php echo $category[ name ]; ?></option>
<?php } ?>
</select>
如今,第二个<代码><select> i.e小类应当首先隐藏,当用户点击<select>
基于其应具有的子类价值。
这样做的一个途径是通过AJAX,通过后一类。 Id as POST Request and take RUS as response.
然而,我想知道是否有任何其他选择,以便自动通过这一类。 Id Value to PHP and unhide the second <select>
here is the Code of second <select>
<select name="subcategory" size="10">
<?php foreach($categories->fetch(array( table => subCategories , categoryId => $categoryId)) as $subCategory) { ?>
<option value="1"><?php echo $subCategory[ name ]; ?></option>
<?php } ?>
</select>
此处唯一需要的是类 人口密集。 是否有任何办法这样做?
thank you..