来自SQL数据库的文件路径不循环BG图像

时间:2014-10-28 16:30:10

标签: php css sql while-loop global-variables

我将图像上传到一个文件夹,文件路径与其他信息(标题,说明)一起存储在表格中。我希望这个信息在重复的div中循环。其他两个变量都正确循环,但是文件路径变量需要在后台URL中使用,目前只能回显最后一行的值。非常感谢您的帮助,必须有一个简单的解决方案! -Sean




<?php
	$result = mysql_query("SELECT * FROM `program`");
	$values = mysql_fetch_array($result);
	$globals['filepath'] = $row['filepath'];
	
	

echo "<div>"; // start a table tag in the HTML

while($row = mysql_fetch_array($result)){   //Creates a loop to loop through results


echo "<div class=wrapper3  >

<h2>" . $row['program_name'] . "</h2>
<p>" . $row['program_description'] . "</p>

</div>
<p>         </br>      </p>";

$globals['bgimage'] = $row['filepath'];

}
echo "</div>";


?>

<style type="text/css">
.wrapper3{

	width:85%;
	margin:0 auto;
	padding:20px;
	height:auto;
	color:#FFF;

    background: url(/SMLC/<?php while ($row = mysql_fetch_array($result)){ echo $globals['bgimage'];} ?>
) no-repeat; 
	background-size:cover;
	color:#000;
	height:250px;
	text-align:center;
	background-color:#fff;
	border-radius:6px;
	border:1px solid #0FF;


}

</style>
<?php mysql_close();?>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

从css中的.wrapper3中删除背景,并将其作为内联样式添加到元素中。

<?php

$result = mysql_query("SELECT * FROM `program`");
echo "<div>"; // start a table tag in the HTML
while ($row = mysql_fetch_array($result)) {   //Creates a loop to loop through results
    $globals['filepath'] = $row['filepath'];
    echo "<div class='wrapper3' style=\"background: url('/SMLC/".$row["filepath"]."');\">
            <h2>" . $row['program_name'] . "</h2>
            <p>" . $row['program_description'] . "</p>
        </div>
        <p></br></p>";
}
echo "</div>";
?>

注意:使用mysqli函数或PDO而不是mysql函数,因为不推荐使用mysql函数。