<div class="listing_element info_pro">
<p class="pro_title">Country</p>
<div class="sub_text text_small pro_text"><?php echo countryFlag($user['country']); ?></div>
</div>
使用上面的代码,我试图将“国家/地区”标志添加到个人资料页面中,我以某种方式成功完成,但是代码显示了标志的路径。我想将其显示为图像。
答案 0 :(得分:0)
将<img>
标记与src
一起使用
<div class="sub_text text_small pro_text"><img src="<?php echo countryFlag($user['country']); ?>" height="50" width="50"></div>