gpt4 book ai didi

php - 如何在if语句中将字体颜色从红色更改为绿色

转载 作者:行者123 更新时间:2023-11-28 13:29:57 32 4
gpt4 key购买 nike

我有一个表行,其中包含一个 id,如下所示:

  <td id='errormsg'>$errormsg</td>

在 css 页面中,`#errormsg' id 将文本颜色变为红色,如下面在单独的 css 文件中所示:

#errormsg{
color:red;
}

不过我有点情况。我在这里有一个 if 语句:

if(mail($getemail, $subject, $message, $headers)){
$errormsg = "You have been Registered. You must Activate your Account from the Activation Link sent to <b>$getemail</b>";
}

现在我想要发生的是,如果满足此 if 语句,我希望 $errormsg 将字体颜色从红色更改为绿色。这真的可能吗?

最佳答案

试试这个:

$color = "red";

if(mail($getemail, $subject, $message, $headers)){
$color = "green";
$errormsg = "You have been Registered. You must Activate your Account from the Activation Link sent to <b>$getemail</b>";
}
....
echo "<td style='color:$color;' id='errormsg'>$errormsg</td>";

关于php - 如何在if语句中将字体颜色从红色更改为绿色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12117594/

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