php parse error HELP!!

Here's the ERROR:

Parse error: parse error, unexpected '<' in /home/sisco/public_html/admin/index.php on line 85


Just to let you know. Line 85 is this:

<p><b>Welcome to the vBulletin Administrators ' Control Panel</b><br>


Here's the Script:


echo "index.php?s=$session[sessionhash]&amp;action=home";
}

?>" name="main" scrolling="AUTO" NORESIZE frameborder="0" marginwidth="10" marginheight="10" border="no">

</frameset>
</frameset>
</head>
</html><?php
}

if ($action=="head") {
?>
<html><head><link rel="stylesheet" href="../cp.css">
</head>
<body leftmargin="10" topmargin="0" marginwidth="0" marginheight="0" id="navbody">
<table border="0" width="100%" height="100%">
<tr valign="middle">
<td><a href="http://www.vbulletin.com/" target="_blank">Control Panel (Version <?php echo $versionnumber; ?>)</a></td>
<td align="center"><a href="http://vbulletin.com/members/" target="_blank">Latest version of vBulletin available is <?php echo $versionnumber; ?>.</a></td>
<td align="right"><b><a href="../index.php?s=" target="_blank">Go to your Forums Home Page</a></b></TD>
</tr>
</table>
</body></html>
<?php
}

if ($action=="home") {

cpheader("<script language=\"javascript\" type=\"text/javascript\"> function jumpto(url) { if (url != '') { window.open(url); } } </script>");
<p><b>Welcome to the vBulletin Administrators ' Control Panel</b><br>
<font size='1'>Software Developed by <a href="http://www.jelsoft.com/">Jelsoft Enterprises Limited</a></font></p>

?>



<p><font size='1'>From here, you can control all aspects of your vBulletin forums.
Please select what you need from the links down the left hand side of this page.</font><p>

<?php

if ($moderatenewmembers==1 or $usecoppa==1) {
$waiting=$DB_site->query_first("SELECT COUNT(*) AS users FROM user WHERE usergroupid=4");
if ($waiting[users]==0) {
echo "<font size='1'>There are currently $waiting[users] user(s) awaiting <a href=\"user.php?s=$session[sessionhash]&amp;action=moderate\">moderation</a>.</font>";
} else {
echo "<b><a href=\"user.php?s=$session[sessionhash]&amp;action=moderate\">There are currently $waiting[users] user(s) awaiting moderation</a>.</b>";
}
}

doformheader("user","find");
maketableheader("Useful Admin Stuff");

if ($stats = @exec("uptime")) {
$datecut=time()-$cookietimeout;
$guestsarry = $DB_site->query_first("SELECT COUNT(host) AS sessions FROM session WHERE userid=0 AND lastactivity>$datecut");
$membersarry = $DB_site->query("SELECT DISTINCT userid FROM session WHERE userid<>0 AND lastactivity>$datecut");

PLEASE HELP!!! THIS IS DRIVING ME CRAZY FOR A WEEK NOW!

THANKS IN ADVANCE!!

 

 

 

 

Top