I am having a problem with an external style sheet using PhP5.
If I put the link to the stylesheet in on the page everything works fine.
However, I am using a function files to store the functions that are used frequently throughout the site.
All function files are specified in an include statement.
When I run the page with the stylesheet link in the output_fns.php file the styesheet is not loading. The content works fine but none of the styles are loading. Can anyone help?
Here is my coding:
(index.php)
<?php
include('rhs72_fns.php');
session_start();
do_html_header('RHS Class of 1972');
?>
rhs72_fns.php
<?php
include('database_fns.php');
include('output_fns.php');
?>
output_fns.php
function do_html_header($title = ' ')
{
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns=""http://www.w3.org/1999/xhtml" lang = "en" xml: lang = "en">
<head>
<meta http-equiv="Content Type" content ="text/html";
charset ="ISO-8859-1" />
<meta name = "Author" Content = "Michael Burden" />
<meta name = "Created Date" content = "12/10/2012" />
<meta name = "Company" content = "MTB Enterprises" />
<meta name = "Modified Date" Content = "12/11/2012 />
<title><?php echo $title; ?></title>
<link rel="stylesheet" type="text/css" href="http://www.rhs72rams.com/rhs72rams_main.css" />
</head>
<body>
<body>
<div class="container">
<div class="header"><a href="#">
<img src="images/RiverviewHighSchool.jpg"
alt="Ram's Head" name="Logo" width="960"
height="160" id="Insert_logo" /> </a>
<!-- end .header --></div>
<div class="sidebar1">
<ul class="nav">
<li> <a href="/login.php">Log-In</a></li>
<li><a href="/index.php">Welcome</a></li>
<li><a href="/classmates.php">Classmates</a></li>
<li><a href="/memorial.php">Memorials</a></li>
<li><a href="/photos.php">Photo Albums</a></li>
<li><a href="/chat.php">Chat Room</a></li>
<li><a href="/quiz.php">Quiz Page</a></li>
<li><a href="/polls.php">Polls</a></li>
<li><a href="/calendar.php">Calendar</a></li>
<li><a href="/events.php">Details of Events</a></li>
<li><a href="/rsvp.php">RSVP</a></li>
<li><a href="/coming.php">Who's Coming</a></li>
<li><a href="/tickets.php">Buy Tickets</a></li>
<li><a href="/travel.php">Travelers</a></li>
<li><a href="/donations.php">Make a Donation</a></li>
<li><a href="/sponsors.php">Sponsors</a></li>
<li><a href="/store.php">Class Store</a></li>
<li><a href="/contact.php">Contact Us</a></li>
<li><a href="https://www.facebook.com/#!/groups/117326885027939/">Facebook Link</a></li>
</ul>
<p> </p>
<!-- end .sidebar1 --></div>
<?php
}