在mysql中使用php和存储路径的背景图像

时间:2014-10-02 11:16:05

标签: php html mysql css

我试图弄清楚如何从MySQL中取出路径(例如images / img1.png)并将其回显到

<div class="fullscreen" style="background-image:url('<?php echo $query['image'] ?>');background-position:100% 50%;" data-img-width="1600" data-img-height="1064">

但是,图像无法返回,我无法弄清楚原因。

2 个答案:

答案 0 :(得分:0)

我很抱歉浪费你的时间。我刚想通了。我忘记在select语句中选择图像了!

我有SELECT text FROM table而不是SELECT text,image FROM table

答案 1 :(得分:0)

我认为这会对你有所帮助.. <div class="fullscreen" style="background-image:url('folderpath/<?=$query['image'];?>');background-position:100% 50%;" data-img-width="1600" data-img-height="1064">