尝试验证我的代码时出现三个多重错误。
echo '<section id="featured">';
$recipes = mysql_query("
SELECT `id`,`name`, `image`, `description`
FROM `recipe`
ORDER BY RAND() LIMIT 4;
");
while ($recipe = mysql_fetch_assoc($recipes)) {
echo '<section id="recipeslide">';
$recipe_id = $recipe['id'];
echo "<a href='php/recipe.php?id=$recipe_id'><img src=\"{$recipe['image']}\" height=100 width=100 /></a><br />";
echo '</section>';
}
echo '</section>';
这是我唯一使用 recipeslide id 的地方,但我认为验证器不知何故感到困惑,想知道如何解决这个问题,还是忽略它?
它指出了另外两个据称重复的 ID。
它也在抱怨 alt 标签,但我认为它们在这种情况下不会有效。