codeigniter - dependent dropdown with jquery and ajax post
问题 view : learning_view.php Here is the first dropdown which I am populating from database. <select name = 'category' id = 'category'> <option value="">-- Select Category --</option> <?php foreach($category as $item){ ?> <option value="<?php echo $item->id_cat; ?>"><?php echo $item->name; ?></option> <?php } ?> </select> <br><br> What I want is to populate another dropdown which is dependent on the first dropdown. For that I have used the jQuery ajax post. second dropdown: <select name = 'type'