i want to show images in coming from database, but its not displaying. There is no error at all even i checked with console, but if i display image out of select its works.
How to display images?
<select data-show-subtext="true" class=" selectpicker bs-select form-
control" data-live-search="true" data-size="8" name="drawing">
<option value=""></option>
<?php foreach($get_drawing as $row): ?>
<option data-subtext="" value="<?php echo $row->drawing_id; ?>" >
<?php echo $row->drawing_name;?>
<img width="22%" height="10%" class="" src="<?php
echo base_url('drawing/fabricator/admin_3/'.$row->image); ?>">
</img>
</option>
<?php endforeach; ?>
</select>