I've gone through the archives and read a bunch of questions relating to why PHP include won't work. I've tried to fix my problem using answers to the other questions, but am still having issues.
This is my code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Fuel Status Map</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="main">
<div id="map">
<?
require 'MapLink.php';
?></div>
<div id="title"><img src="title.png" width="400" height="200" />
</div>
<div id="links">
<a href="statusbyzone.php"><img src="FuelStatusLink.png" width="400" /></a>
<br />
<a href="selectoffice.php"><img src="NWSofficeLink.png" width="400" /></a>
<br />
<a href="Login1.php"><img src="FuelSpecialistLink.png" width="400" /></a>
<br />
<img src="AdminLink.png" width="400" />
<br />
</div>
<div id="legend"><img src="Legend1.png" width="400">
</div>
<div id="logos">
<img src="PSlogo.png" width="140" height="150" />
<img src="GBlogo.png" width="250" height="150"/>
</div>
</div>
</body>
</html>
The page is supposed to look like this: http://www.directdocuments.com/GACC/GBSite/predictive/FuelStatus/FuelStatusMap.php but looks like this: http://gacc.nifc.gov/gbcc/predictive/FuelStatus/FuelStatusMap.php The MapLink.php is in the same directory, and works correctly. I'd post the link to that as well, but I can't post any more links.