gpt4 book ai didi

php - 如何在 echo 中设置文本样式?

转载 作者:太空狗 更新时间:2023-10-29 15:24:50 26 4
gpt4 key购买 nike

部分代码为

while ($row = mysqli_fetch_assoc($result))
{
echo "$row[firstname] $row[lastname]";
echo "<hr>";
echo "<strong>Date Referred:</strong>&emsp;&emsp;&emsp;&emsp;&emsp;$row[cf_831]";
echo "<br/>";
echo "<strong>Date Today:</strong>&emsp;&emsp;&emsp;&emsp;&emsp;&nbsp;&emsp;$today";
echo "<br/>";
}

例如,我该如何设置这部分的样式?

"$row[firstname] $row[lastname]"

最佳答案

你可以试试

echo '<p class="mystyle">' . $row['firstname'] . " " . $row['lastname'] . '</p>';

然后添加CSS

.mystyle {

}

关于php - 如何在 echo 中设置文本样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31262046/

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