Hi Mudguard,
Here's the code for the three files. The "1" appears between the html of the header and the html of index.php:
/portfolio/back-to-back-unit/index.php:
<?php
$title = "Portfolio: Woolworth's Newspaper/ Magazine Rack";
$path = "../../";
echo include ("../../includes/header.php");
echo "<img class='portfolio' src=\"img_1.jpg\" width='400' height='300' alt='' /><br />";
echo "<p>Provided by News International, this unit is now installed in 300 Woolworths.</p>";
?>
<!-- Insert directory name of Previous page -->
<p><a href="../modular-display/">« Previous</a>
|
<a href="../">Portfolio</a>
|
<!-- Insert directory name of Next page - here this is set to the first in the series.
Remember to change the Next link in the previous portfolio page to the directory
you have saved this page to.-->
<a href="../racing_stand/">Next »</a></p>
<?php include ("../../includes/footer.php"); ?>
*********************************************************
/includes/header.php:
<!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" lang="en" xml:lang="en">
<head>
<title>Daedalus Design Portfolio: <?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Description" content="Description Description Description Description Description Description Description Description Description Description" />
<meta name="Keywords" content="Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords,Keywords" />
<meta http-equiv="expires" content="01 Apr 2000" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<link rel="stylesheet" type="text/css" href="<?php echo $path; ?>css/main.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div id="body">
<div id="header">
<?php
echo '<img src="'.$path.'images/daedalus_design.jpg" width="447" height="83" hspace="0" vspace="0" alt="DaedalusDesign.org" />';
?>
</div>
<div id="side">
<img src="<?php echo $path; ?>images/menu.jpg" width="208" height="380" border="0" alt="Menu" usemap="#menu" />
<map name="menu">
<area shape="poly" coords="35,8,165,4,180,14,182,64,173,77,39,80,25,69,24,15" href="<?php echo $path; ?>portfolio/" alt="Portfolio">
<area shape="poly" coords="53,96,114,95,128,103,128,164,117,178,53,177,38,166,37,106" href="<?php echo $path; ?>cv.htm" alt="cv">
<area shape="poly" coords="17,197,189,195,191,227,179,235,19,235" href="<?php echo $path; ?>why-daedalus.htm" alt="Why Daedalus?">
<area shape="poly" coords="28,248,192,242,203,252,203,288,193,299,32,303,18,290,17,258" href="<?php echo $path; ?>contact.htm" alt="Contact Daedalus Design">
<area shape="poly" coords="7,318,188,311,203,321,204,358,197,371,16,378,5,367" href="<?php echo $path; ?>" alt="Daedalus Design home page">
</map>
</div>
<div id="page">
<h1><?php echo $title; ?></h1>
********************************************************
/includes/footer.php:
<div id="footer">
<p class="footer">©2008 Joe MacLeod-Iredale</p>
</div>
</div>
</div>
</body>
</html>