少し質問があります。この方法で css スタイルのコンテンツを (php で) 動的に変更できますか?
<?php
header("Content-type: text/css; charset: UTF-8");
$color = "red;";
?>
header {
color:<?php print $color; ?>
}
?>