I have googled a lot but it seems that I am doing something wrong.

I want to do this:

                <?php include 'header.php'; include'CSS/main.css'; ... ?>                              

However, my page prints the CSS code.

Note: I want to use PHP to include the CSS file, and not use I also do you want to rename my CSS file to a PHP file as some website mentioned.

Any clues?

Many thanks.

asked Jun 11 '11 at 12:00

4

You have to surround the CSS with a <style> tag:

                  <?php include 'header.php'; ?> <style> <?php include 'CSS/main.css'; ?> </style> ...                                  

PHP include works fine with .css ending too. In this way you can even use PHP in your CSS file. That can be really helpful to organize e.g. colors as variables.

answered Jun 11 '11 at 12:11

4

You are including the CSS code as text in your PHP page. Why not just link it in the traditional fashion?

                  <link rel="stylesheet" href="CSS/main.css" type="text/css">                                  

answered Jun 11 '11 at 12:03

3

you can use:

                  <?php $css = file_get_contents('CSS/main.css'); echo $css; ?>                                  

and assuming that css file doesn't have it already, wrap the above in:

                  <style type="text/css"> ... </style>                                  

answered Jun 11 '11 at 12:04

4

To use "include" to include CSS, you have to tell PHP you're using CSS code. Add this to your header of your CSS file and make it main.php (or styles.css, or whatever):

                  header("Content-type: text/css; charset: UTF-8");                                  

This might help with some user's connections, but it theoretically (read: I haven't tested it) adds processor overhead to your server and according to Steve Souder, because your computer can download multiple files at once, using include could be slower. If you have your CSS split into a dozen files, maybe it would be faster?

Steve's blog post: http://www.stevesouders.com/blog/2009/04/09/dont-use-import/ Source: http://css-tricks.com/css-variables-with-php/

answered Aug 19 '13 at 20:41

0

                <?php   define('CSSPATH', 'template/css/'); //define css path   $cssItem = 'style.css'; //css item to display ?>     <html> <head>  <title>Including css</title>   <link rel="stylesheet" href="<?php echo (CSSPATH . "$cssItem"); ?>" type="text/css"> </head> <body> ... ... </body> </html>                              

YOUR CSS ITEM IS INCLUDED

JON

693 8 silver badges 26 bronze badges

answered Jun 11 '11 at 13:28

This is an older post, however as the info is still relevant today an additional option may help others.

  • Define a constant for the file path per Stefan's answer. The definition can be placed at the top of the PHP page itself, or within an included/required external file such as config.php. (http://php.net/manual/en/function.include.php)

  • Echo the constant in PHP tags, then add the filename directly after. That's it!
    Works for other linked files such as JavaScript as well.

                  <?php define('CSS_PATH', 'template/css/'); //define CSS path  define('JS_PATH', 'template/js/'); //define JavaScript path  ?> <!-- Doctype should be declared, even in PHP file --> <!DOCTYPE html>  <html> <head> <link rel="stylesheet" type="text/css" href="<?php echo CSS_PATH; ?>main.css"> <script type="text/javascript" src="<?php echo JS_PATH; ?>main.js"></script> </head> <body> </body> </html>                                  

answered Nov 17 '16 at 21:51

If you want to import a CSS file like that, just give the file itself a .php extension and import it anyway. It will work just fine :)

answered Jun 11 '11 at 12:05

You can also do the following:

  1. Create a php file in includes folder, name it bootstrap_css.php for example
  2. paste the css code files to file created above

                                              <?php    $minCss=' <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">';   $business = '<link href="bootstrap/css/modern-business.css" rel="stylesheet">';    echo $minCss;   echo $business; ?>                                      
  3. in the html header, include the css files as follows

                                              <?php include_once 'includes/bootstrap_css.php'; ?>                                      

answered Feb 2 '16 at 19:50

You could do this

<?php include("Includes/styles.inc"); ?>

And then in this include file, have a link to the your css file(s).

answered Jun 11 '11 at 12:07

I don't know why you would need this but to do this, you could edit your css file:-

                <style type="text/css"> body{ ...; ...; } </style>                              

You have just added here and saved it as main.php. You can continue with main.css but it is better as .php since it does not remain a css file after you do that edit


Then edit your HTML file like this. NOTE: Make the include statement inside the tag

                <html> <head>  <title>Sample</title>  <?php inculde('css/main.css');> </head> <body> ... ... </body> </html>                              

answered Jun 11 '11 at 12:17

I solved a similar problem by enveloping all css instructions in a php echo and then saving it as a php file (ofcourse starting and ending the file with the php tags), and then included the php file. This was a necessity as a redirect followed (header ("somefilename.php")) and no html code is allowed before a redirect.

answered Oct 14 '15 at 12:52

0

Just put

                echo "<link rel='stylesheet' type='text/css' href='CSS/main.css'>";                              

inside the php code, then your style is incuded. Worked for me, I tried.

answered Dec 15 '18 at 18:37

This is the format of what I have which works:

                <head> <title>Site Title</title>  <?php include 'header.php'; ?> </head>                              

Inside my header.php I have:

                <!doctype html> <html class="no-js" lang="en"> <meta name="viewport" content="width=device-width, initial-scale=1">     <meta name="viewport" content="width=device-width, initial-scale=1">     <link rel="shortcut icon" type="image/png" href="assets/images/icon/favicon.ico">     <link rel="stylesheet" href="assets/css/bootstrap.min.css">                              

answered Oct 11 at 12:43

The best way to do it is:

Step 1: Rename your main.css to main.php

Step 2: in your main.php add

                <style> ... </style>                              

Step 3: include it as usual

                <?php include 'main.php'; ?>                              

That is how i did it, and it works smoothly..

Mwiza

5,252 2 gold badges 36 silver badges 33 bronze badges

answered Sep 7 '14 at 4:14

_trace its directory, I guess

                  echo css('lib/datatables_rqs/jquery.dataTables.css');                                  

JochenJung

7,030 12 gold badges 60 silver badges 107 bronze badges

answered Jun 7 '16 at 3:50

0

Not the answer you're looking for? Browse other questions tagged php html css import or ask your own question.