Вот этот код выдает ошибку This page contains the following errors:
error on line 18 at column 37: error parsing attribute name
Below is a rendering of the page up to the first error. И обрезает страницу
Вот сам код...
$req = mysql_query("SELECT
`fanclub_vote`.`id` as `vid`,
`fanclub`.`id` FROM `fanclub_vote`
LEFT JOIN `fanclub` ON
`fanclub_vote`.`cid`=`fanclub`.`id`
WHERE `fanclub_vote`.`user_id`='".
$user['id']."' AND
`fanclub_vote`.`count`='1' LIMIT
0,5 ");echo 'Фанат:<br/>'; while
($res = mysql_fetch_array($req))
{ echo '<a href="../fanclub/
titul_club.php?id='.$res
['id'].'"><img src="'.$home.'/
fanclub/img/'.$res
['id'].'_small.png" width="25"
height="25" align="middle" alt=""
border="0"/></a> '; ++$i; }
$req = mysql_query("SELECT
`fanclub_vote`.`id` as `vid`,
`fanclub`.`id` FROM `fanclub_vote`
LEFT JOIN `fanclub` ON
`fanclub_vote`.`cid`=`fanclub`.`id`
WHERE `fanclub_vote`.`user_id`='".
$user['id']."' AND
`fanclub_vote`.`count`='0' LIMIT
0,5 ");echo '<br/>Анти-фан:<br/
>'; while ($res =
mysql_fetch_array($req)) { echo
'<a href="../fanclub/
titul_club.php?id='.$res
['id'].'"><img src="../fanclub/
img/'.$res['id'].'_small.png"
width="25" height="25"
align="middle" alt="" border="0"/
></a> '; ++$i; } echo '<br/
>' ;