1- Most Important Point make it selected option with all option's Records With using ternary Operator:
<div class="form-group">
<label for="cars">Choose Role:</label>
<div class="col-sm-10">
<select name="role" id="role" class="form-control">
<option value="" >Choose Roles</option>
<?php foreach($roles as $role){?>
<option value="<?= $role['id']?>"
<?php echo ($role['id'] == $data['role_id'])
? 'selected' : ''; ?>>
<?= $role['role']?>
</option>
<?php } ?>
</select>
</div>
</div


No comments:
Post a Comment