-4

嗨,我试图以这种格式在 php 中显示当前时间。但背景为蓝色,文本为白色。

Current Time: Fri Sep 21 11:06:46 2007

我的问题是,在我的 CSS 文件中,背景的语法如下......

body{
/* fallback */
background-color: #C0C0C0;
/*background: url(images/linear_bg_2.png);*/
background-repeat: repeat-x;
}

但是在我的 php 文件中,当用户输入正确的时间显示格式时,我的时间应该以蓝色背景和白色文本显示。文本实际上工作正常,但背景没有改变。

这就是我的 php 文件所拥有的。

<?php
}// End of IF statement
    if($_POST && $_POST['userInput'] == "comp" && $_POST['userInput'] != ""){
        ?><body style="background-color:#0000CC;color:white;"><?php
        date_default_timezone_set('America/Toronto');
        echo "Current Time: " . date("D M d H:i:s Y");
        ?></body><?php
    }

好吧,我希望有人知道或可以看到我做错了什么..我会非常感激..

4

2 回答 2

6

您忘记了#十六进制颜色之前的内容。

?><body style="background-color:#0000CC;color:white;"><?php
于 2013-10-17T20:31:16.457 回答
0

好吧,我用这种方式解决问题......

使用脚背

?><body style="background-color:#0000CC;color:white;"><?php

我改成...

?><body style="background:#0000CC;color:white;"><?php

它让它发生了..覆盖了css样式表......谢谢大家..

于 2013-10-17T21:07:49.573 回答