Jump to content

How to include style.css in all PHP file?


bulrush

Recommended Posts

I have a PHP include file which has only PHP code, no html header or any html at all. However it uses classes defined in my style.css file. How do I include my style.css file so the styles are used in my util.php include file?

 

 

Link to comment
Share on other sites

Yes, this util.php include file is included in other php files which have an HTML tag. But sometimes the util.php is included BEFORE the html tag. Perhaps my php files are structured incorrectly. I got my structure from the book I just read: "Headfirst PHP and Mysql." This is how they structure their files, and how mine are structured:

<?php 
session_start();
if (isset($_POST['submit']))
    {//process user form...
    }
<?php session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Online Entry Main Menu</title>
  <link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
(do stuff here including constructing input form.)
</body>
</html>

 

Link to comment
Share on other sites

But sometimes the util.php is included BEFORE the html tag.

 

If your util.php file outputs anything before the <html> tag it will make your document invalid. So yes, it sounds like your documents are structured incorrectly.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.