在变量中存储图像路径

时间:2012-08-09 16:29:29

标签: php database image variables profile

我有一个存储用户图像路径的数据库,例如images / profile / 950baasfaa88c.jpg。现在,当我尝试将其放入变量并用图像标签包围时,只出现一个空白图像而不是图像本身...

    $profile_picture = $row['profile_image'];

<img src="'.$profile_picture.'" width=50 height=50 />

2 个答案:

答案 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 />