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.
Start your mystyle.php file with.
header("Content-type: text/css");
Then echo out the elements.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With