我有一个存储用户图像路径的数据库,例如images / profile / 950baasfaa88c.jpg。现在,当我尝试将其放入变量并用图像标签包围时,只出现一个空白图像而不是图像本身...
$profile_picture = $row['profile_image'];
<img src="'.$profile_picture.'" width=50 height=50 />
答案 0 :(得分:2)
你没有回应PHP
<img src="'.$profile_picture.'" width=50 height=50 />
应该是
<img src="<?= $profile_picture ?>" width=50 height=50 />
答案 1 :(得分:0)
你需要回显价值
<img src="<?php echo $row['profile_image']; ?>" width=50 height=50 />