我正在尝试使用 select 和 option 标签显示我的数据库中的图像,但图像不显示。
<div class="form-group col-md-6">
<label for="inputtype">Game Type</label>
<select class="custom-select mr-md-2" name="image_file">
<?php foreach($games as $image): ?>
<option selected></option>
<option value="<?php echo $image->region ?>"><img src="<?php echo $image->image_path(); ?>" width="40" height="40" style="border-radius: 100%; "/></option>
<?php endforeach; ?>
</select>
</div>
循环正确,图像路径功能也正确,因为我在其他选项中使用过。我只需要显示图像,以便我可以选择其他用途。
幕布斯6054654