try this:
session_start();
include_once ("include/header.php");
if (!isset($_SESSION['name'])) {
header("Location:includeindex.php");
exit;
}
else {
TopNavigation("about Me -ECA236", "About Me", $_SESSION['name']);
echo "Here is a little about me. I am a mother of twin girls who are 9
";
echo "I been married for 5 years but been with my husband for 11 years
";
echo "I am attending college for Computer Programming and Database Mangament
";
echo "After I get done with this degree I am want to go back for Web Design
";
echo "since half my classes are web design now. I enjoy camping,bon fires and
";
echo "playing video games, hanging out with friends and family.
";
Footer();
}