img没有在使用php的html中显示

时间:2014-11-05 16:25:14

标签: php html image

使用php

在我的代码中显示图像时遇到问题

我正在使用图像配置文件更新,当我使用图像标记时,使用html显示在浏览器中的正常方式,当我查看页面源时,它会显示链接,因为它应该

 <img src="profile_images/profile/be2b496164.png"/> // underlined link

但是当我用php

回应它时
echo '<img scr="'. $user->data()->profile. '"/>';

图像正确存储在正确的文件路径中,并正确存储在数据库中。但图像不会在浏览器中显示。当我查看页面源时,它显示为正常的html方法,但没有链接

<img src="profile_images/profile/be2b496164.png"/> // no underlined link

我不明白问题是什么......总是赞赏任何帮助

1 个答案:

答案 0 :(得分:2)

根据OP关于提问的请求:

您的代码中存在拼写错误:

echo '<img scr="'. $user->data()->profile. '"/>';
           ^^^

它应该显示为src而不是scr

echo '<img src="'. $user->data()->profile. '"/>';