解决"解析错误,意外'>'"错误

and*_*dy 0 php

我正在阅读这个错误

解析错误:在第11行的C:\ wamp\www\about.php中解析错误,意外的'>'

这是我的代码:

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

我试过加入; 到最后并"到最后但同样的事情突然出现.有人能看出我做错了什么.

这是我在添加";到最后:"时得到的错误:

警告:include(include/header.php)[function.include]:无法打开流:第3行的C:\ wamp\www\about.php中没有此类文件或目录

警告:include()[function.include]:在第3行的C:\ wamp\www\about.php中打开'include/header.php'以包含(include_path ='.; C:\ php5\pear')失败

警告:无法修改标头信息 - 已在第5行的C:\ wamp\www\about.php中发送的标头(输出从C:\ wamp\www\about.php:3开始)

Ale*_*sky 5

你有:

echo "<p>playing video games, hanging out with friends and family.</p>
Run Code Online (Sandbox Code Playgroud)

你需要:

echo "<p>playing video games, hanging out with friends and family.</p>";
Run Code Online (Sandbox Code Playgroud)