以下のIDを含むテーブル行を取得しました。
<td id='errormsg'>$errormsg</td>
cssページでは、次の別のcssファイルに示すように、`#errormsg'idによってテキストの色が赤に変わります。
#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でフォントの色を赤から緑に変更することです。これは実際に可能ですか?