I'm trying to write a blog and this comes up
:
Parse error: syntax error, unexpected '<' in C:\wamp\www\Blog\index.php on line 65
the code:
$query = "SELECT id, header, body, views FROM information";
$result = mysql_query($query);
while($row = mysql_fetch_row($result))
{
print "<div class=section odd>";
print "<a href=images/riverside.jpg><img src=images/riverside.jpg /></a>"; <!-- width="125" height="60" width=90 height=73" -->
print "<div>";
print "<h3>TITLE</h3>";
print "<p>BODY</p>";
print "<div class='stats'>";
print "<a href="#" class="time">Sept 21 by Nullam</a>";
print "<span>000 views</span>";
print "<a href="#" class="comments">30</a>";
print "<a href="http://twitter.com/fwtemplates" class="twitter">Tweet</a>";
print "<a href="http://facebook.com/freewebsitetemplates" class="facebook">Share</a>";
print "</div>";
print "</div>";
print "</div>";
}