I'm so annoyed right now. I've never gotten this error until now. This is the error:
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
End tag was not expected at this location. Error processing resource 'http://currentpolitics.com/ilog/members/'. Line 2, Position 7
</td>
------
Now the same XHTML code is on all the pages and this is the only one that's doing this. Nothing is out of the ordinary, but here's the code anyway:
<?php echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">"; ?>
<?php
if(isset($HTTP_COOKIE_VARS["user"])) {
?>
<!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>
<title>iLog -- Your Personal Blog!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<LINK REL="stylesheet" HREF="http://64.246.51.202/ilog/style.css" TYPE="text/css">
</head>
<body bgcolor="#CCCCCC">
<?php
include_once("header.php");
?>
<center>
<br /> <br />
<table width="1024" border="0" cellpadding="0" cellspacing="0" class="bgborder">
<!--DWLayoutTable-->
<tr>
<td width="1024" height="566" valign="top" bgcolor="#FFFFFF"><p align="center"><strong><font color="#696969" size="-1" face="Tahoma">Welcome,
<?php echo($uname); ?></font></strong></p>
<p align="left"><font color="#696969" size="-1" face="Tahoma"><strong>Log
Out:</strong><br />
Logs you out of the iLog system.</font></p>
<?php
} else {
?>
<font color="#696969" size="-1" face="Tahoma">You do not have permission to view this page.</font>
<?php
}
?>
</td>
</tr>
</table>
<br /><br />
<?php
include_once("footer.php");
?>
</center>
</body>
</html>
Thanks for any help.