Add a style.css onto a php file

jdunhin

Active member
Registered
Joined
Feb 27, 2013
Messages
72
Points
0
Add a style.css onto a php file.

PHP:
<?php
echo '<style type="text/css">';
include 'style.css';
echo '</style>';
?>
 

Marc0

Well-known member
Registered
Joined
Jun 6, 2012
Messages
890
Points
28
Good information to add style css into php.
I can rewrite It will be easy to understand for viewers
PHP:
<?php 
$css = '<link rel="stylesheet" type="text/css" href="style.css" />';
echo $css; // export to where you want to include style on your page
?>
That's my suggestion :)
 

shophia

Member
Registered
Joined
Mar 25, 2013
Messages
23
Points
0
It's all depends on the directory formation you've set up. If a stylesheet.css is in the similar directory as header.php, you'll need to include this:

Code:
echo "<link rel='stylesheet' type='text/css' href='stylesheet.css' />";
If you have every of your exterior CSS in a directory under header.php, you'll need to include this:
Code:
echo "<link rel='stylesheet' type='text/css' href='css/stylesheet.css' />";
And last if you have your CSS file in a folder over header.php, you'll need to include this:
Code:
echo "<link rel='stylesheet' type='text/css' href='../stylesheet.css' />";
 
Last edited by a moderator:
Older Threads
Replies
0
Views
2,115
Replies
27
Views
11,091
Replies
11
Views
4,334
Replies
8
Views
4,175
Replies
0
Views
2,237

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top