gpt4 book ai didi

php - 未定义索引 : topic in C:includes\topic_list. php 第 9 行

转载 作者:行者123 更新时间:2023-11-30 00:10:38 25 4
gpt4 key购买 nike

            <?php 
$qr_topic = @mysql_query("SELECT * FROM topics");
while ($topic = @mysql_fetch_array($qr_topic)) {
$highlight = "";
**if ($topic['name'] == $_GET['topic'] || $post['topic_id'] == $topic['id']) {**
$highlight = "class='highlight'";
}
echo "<li ".$highlight."><a href='index.php?topic=".$topic['name']."'>".$topic['name']."<img src='img/".$topic['image']."' width='195' height='90' /></a></li>";
}
?>

出现未定义索引错误,不确定出了什么问题?这可能是错误行。if ($topic['name'] == $_GET['topic'] || $post['topic_id'] == $topic['id']) {**

最佳答案

您尝试使用 $_GET['topic'] 而不首先检查它是否存在,这就是您收到该错误的原因。我建议您首先使用 is_set() 或empty() 测试变量是否存在。

关于php - 未定义索引 : topic in C:includes\topic_list. php 第 9 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24100441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com