I would like to name my css file mystyles.php
. All content within will still be css. I'd like to then include this into my index.php
page without using the standard HTML <link>
tag. Any direction would be appreciated very much.
views:
90answers:
2
+4
A:
Include styles in your mystyle.php file that should look like this:
<?php
<style type="text/css">
/* your styles here.......... */
</style>
?>
Now you can include that file using include
:
include `mystyle.php`
In the end i wonder why don't you use the stylesheet link instead.
Sarfraz
2010-05-15 06:46:37
+4
A:
Start your mystyle.php file with.
header("Content-type: text/css");
Then echo out the elements.
Noctrine
2010-05-18 15:15:02
Don't know if it is as valid after the edit.
Noctrine
2010-05-18 16:03:55