add css through php code example
Example 1: adding css to php file
echo "<link rel='stylesheet' type='text/css' href='CSS/main.css'>";
Example 2: css php
<?php
header('Content-type: text/css');
/*
Hier werden Variablen und ggf.
Algorithmen festgelegt.
*/
?>
body {
background-color: #ffffff;
color: #000000;
}