change css in php

PHP
Rename your style.css file to style.php, then add the following to the top of the file:

<?php header("Content-type: text/css"); ?>
This line tells the browser that the file is CSS instead of HTML. 
In your HTML files, change the stylesheet references from style.css to style.php. For example:

<link rel="stylesheet" type="text/css"
 media="screen" href="style.php">
Source

Also in PHP: