Nieuw lid |
|
Line 27, Column 73: there is no attribute "alt".
…Home</a><br /><a href="blog.php" alt="link">Blog</a><br /><a href="chat.php"
Mijn code:
<?php
$query = mysql_query('SELECT * FROM nl_menu ORDER BY type ASC');
$i = 0;
echo '<a href="index.php" style="">Home</a><br />';
while($rows = mysql_fetch_assoc($query))
{
if($rows['type'] != 'index')
{
echo '<a href="'.$rows['type'].'.php" alt="link">'.$rows['text'].'</a><br />';
}
// In een array plaatsen
//$option[$i] = $rows['text'];
}
?>
<?php $query = mysql_query('SELECT * FROM nl_menu ORDER BY type ASC'); $i = 0; echo '<a href="index.php" style="">Home</a><br />'; { if($rows['type'] != 'index') { echo '<a href="'.$rows['type'].'.php" alt="link">'.$rows['text'].'</a><br />'; } // In een array plaatsen //$option[$i] = $rows['text']; } ?>
Kan iemand mij svp uitleggen hoe ik dit kan oplossen?
Kom er zelf niet uit haha. Ik heb bij elke link een 'tag' toegevoegd om het een naam te geven (alt).
OPGELOST:
Er mag geen 'alt' tag staan bij een link schijnbaar :S
|