PHP INCLUDE with CSS

Hi!I want to know that, is it possible to add css files through include method in PHP??If yes, are there any drawbacks of this??:confused:

AFIK, PHP outputs TEXT. It is a simple matter to use PHP to add CSS and it should function no differently that if you had hand coded it.

The drawbacks would be that you would have to edit your PHP files each time you want to introduce a change to the CSS. Also , depending on how you do it, if you are using inline CSS … you will be subject to all the drawback of such. and if you are using PHP to write the CSS at the head of your document, you are creating a document that is not caching a style sheet.

of course, if your needs are specific, you can have MULTIPLE style sheets and merely use PHP to white a link to the NEEDED styles.