我需要我的管理员能够更改/更新我网站的横幅。
这是横幅代码
<div class="containertop">This depends on the background of the div</div>
这就是 CSS
.containertop
{
width:1000px;
height:300px;
**background:url(../images/1.png) no-repeat center;**
margin: 0 auto;
margin-top: 40px;
}
我希望发生的事情与 Facebook 封面照片相同。上传新横幅时,CSS 将被更新(类似这样)。但是,当然,必须从数据库中获取新横幅。
所以我认为CSS会变成这样:
获取保存的横幅源,然后:
background:url(<?php echo $row['image']; ?>);
但是我可以在 CSS txt 中连接到数据库(包括 'dbname.php')吗?