Jump to content

How to include style.css in all PHP file?


bulrush

Recommended Posts

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>

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.