This is the page containing the sub(left column) menu. You will see the error message after I attempted to link to the deal.html page. http://www.mcalcamo.com/management.php
And this is the php code from a file called management_sub_menu.php which is brought into the management.php page.
<?xml version="1.0" encoding="utf-8"?>
<!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>Untitled document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<li><?php if ($thisSubPage=="fund_management")
echo " class=\"currentpage_sub\""; else
echo " class=\"otherpage_sub\"";?>>
<a href="fund_management.php">Fund Management</a></li>
<li><?php if ($thisSubPage=="contact_sub")
echo " class=\"currentpage_sub\""; else
echo " class=\"otherpage_sub\"";?>>
<a href="contact_sub.php">Email Us</a></li>
<li><?php if ($thisSubPage=="in_the_news")
echo " class=\"currentpage_sub\""; else
echo " class=\"otherpage_sub\"";?>>
<a href="in_the_news.php">In The News</a></li>
<li class="otherpage_sub"><a href="deals.php?section=m">Closed Deals</a></li>
</body>
</html>
Please help!
Sara