Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parse error: parse error, unexpected '<'

Status
Not open for further replies.

amirkhansemail

Programmer
Jan 22, 2007
11
CA
I am getting the following error, I have done everything to find out if there are any tags out of balance:

Parse error: parse error, unexpected '<' in d:\folder\index.php on line 6

How can fix this error please?

Thanks in advance.
Amir
 
Here is the narfle the garthok code (its .php file which i have simplified, still getting exactly the same error on this also):

Code:
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>

<head>

	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<title>Cooper Care Centers</title>

	<link rel="stylesheet" href="general.css" type="text/css" media="screen">

</head>

<body>

<table border="0" cellpadding="0" cellspacing="0" width="100%" >
	<tr>
		<td width="177" bgcolor="#FFFFFF"></td>
		<td width="255" bgcolor="#FFFFFF"></td>
		<td bgcolor="#FFFFFF"></td>
	</tr>

	<tr>
		<td colspan="2" style="background-color: #007A7F;"><img src="images/masthead.gif" border="0" alt="" title="" /></td>
		<td style="background-color: #007A7F; text-align: right;">&nbsp;</td>
	</tr>

	<tr>
		<td colspan="2" class="date" style="background-color: #FFF; border-top: 1px solid #000; border-bottom: 1px solid #000;">&nbsp;</td>
		<td style="background-color: #FFF; border-top: 1px solid #000; border-bottom: 1px solid #000; text-align: right;" nowrap>
			<img src="images/white_ht_24.gif" border="0" alt="" title="" />
		</td>
	</tr>

	<tr>
		<td colspan="3" style="background: #FFF url(images/menu_bg.gif) repeat-x top left;"><img src="images/menu_top.gif" border="0" alt="" title="" /></td>
	</tr>

	<tr>
		<td style="vertical-align: top; background: url(images/menu_dn.gif) repeat-y bottom left;" >

			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />

			<a href="" ><img src="images/vnav_company_profile_on.gif" border="0" alt="" title="" /></a><br />
			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />

			<a href="" ><img src="images/vnav_company_profile_on.gif" border="0" alt="" title="" /></a><br />
			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />

			<a href="" ><img src="images/vnav_company_profile_on.gif" border="0" alt="" title="" /></a><br />
			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />

			<a href="" ><img src="images/vnav_company_profile_on.gif" border="0" alt="" title="" /></a><br />
			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />

			<a href="" ><img src="images/vnav_company_profile_on.gif" border="0" alt="" title="" /></a><br />
			<img src="images/vnav_dotted_hline.gif" border="0" alt="" title="" /><br />


		</td><!-- END MENU -->



		<td colspan="2" style="padding: 20px; vertical-align: top;"><!-- BEGIN CONTENT -->


<h1>Cooper Care Centers</h1>

<p>Desc</p>
<p>Desc</p>
<p>Desc</p>
<p>Desc</p>
<p>Desc</p>
<p>Desc</p>
<p>Desc</p>





<div id="footer">

	<p class="links">
		<a href="aboutus">About Us</a> |
		<a href="contact">Contact Information</a>
	</p>

	<p> &#169; Cooper Care Centers <br /> Subsidiary of <a href="[URL unfurl="true"]http://www.palominodevelopment.com"[/URL] target="_blank">Palomino Developement Corporation</a> </p>

</div>




		</td><!-- END CONTENT -->

	</tr>

</table>

</body>

</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top