-6

如何在下面的回声上应用 css?在为 UTF 编码添加标头之前,我让它工作了,但现在它也回显了 css,所以我的回显结果是:<p align='center'>Good!!!</p>

<?php 
header('Content-type: text/plain; charset=utf-8');

$answer = $_POST['1'];  
if ($answer == "YES") {          
    echo 'Good!!!';      
}
else {
    echo 'Try Again!';
} 
?>

更正:

<?php 
    header('Content-type: text/html; charset=utf-8');

    $answer = $_POST['1'];  
    if ($answer == "YES") {          
        echo "<p align='center'>Good!!!</p>";        
    }
    else {
        echo "<p align='center'>Try Again!</p>";  
    } 
    ?>
4

1 回答 1

1

您正在发送标头:

Content-type: text/plain;

它告诉浏览器传入的数据是纯文本,而不是 html,因此返回数据中的任何标记都将被忽略。

于 2013-01-18T11:51:14.893 回答