| CSS változó PHP-vel |
|
1. Use a php suffix stylesheet as show below; <link rel="stylesheet" href="/style.php" media="screen">
2. Use a PHP Heredoc to encapsulate CSS as show below. <?phpheader("Content-type: text/css"); $color = "green"; // <--- define the variable echo <<<CSS /* --- start of css --- */ h2 { color: $color;/* <--- use the variable */ font-weight: bold; font-size: 1.2em; text-align: left; } /* --- end of css --- */ CSS; ?> |



