gpt4 book ai didi

php - 尝试更改从 mySQL 数据库导入的 HTML 元素的背景颜色时,PHP 中的非更新内联 CSS

转载 作者:行者123 更新时间:2023-11-30 22:09:49 25 4
gpt4 key购买 nike

我是一名学生(对 PHP 非常陌生)试图动态更改数据库中每条“鱼”的背景颜色,但在此之前,我需要尝试静态更改背景,但是,我什至不能去做。我试过在引号周围不使用引号、引号和转义字符都无济于事。

PHP/HTML

<html>
<head>
<title>Dinosaurs</title>
</head>
<body>
</body>
<?php
include 'connection.php';
$query = "SELECT Name FROM `fish` WHERE FishTypeID = 4";
if (!$result = $mysqli->query($query)){
echo "Sorry, the website is experiencing problems.";
echo "Error: Your query failed to execute and here is why: \n";
echo "Errno: " . $mysqli->errno . "\n";
echo "Error: " . $mysqli->error . "\n";
exit;
}
while ($row = mysqli_fetch_row($result)) {
print("<div background-color = \"blue\">
<h4>");
foreach ($row as $key => $value) {
print($value . "
<svg height = 64 width = 80>
<polygon points='1 31, 6 42, 1 47,26 63,60 50,80 64, 72 39, 80 16,60 28,26 17' />
<circle cx='20' cy='32' r='5' stroke='white' stroke-width='3' fill='black' />
</svg>");
}
print("</h4></div>");
}
?>
<h1>dinosaurs</h1>
</html>

最佳答案

感谢大家的帮助!事实证明,我使用的是“=”而不是“:”来分配背景颜色。

关于php - 尝试更改从 mySQL 数据库导入的 HTML 元素的背景颜色时,PHP 中的非更新内联 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40458263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com