duanhuiuw12555 2011-11-24 01:35
浏览 81
已采纳

获取通知:未定义的索引:id

I'm making a forum software right now, just for some practice, and I'm getting this error when displaying the forums of the site.

This is my current start to it. It works, it just gives me this error:

Notice: Undefined index: id in C:\xampp\htdocs\forum\forums.php on line 15

<?php
include_once("connect.php");
mysql_select_db("forums");

$find = "SELECT ID,name,description FROM forums";  
$run_find = mysql_query("$find");
while($is = mysql_fetch_assoc ($run_find)) 
{
$id = $is['id'];
$name = $is['name'];
$des = $is['description'];

print "Forum : <a href='topics.php?t=$id'>". $name . "</a><br/>" .$des . "";
}

?>
  • 写回答

1条回答 默认 最新

  • dqd82461 2011-11-24 01:37
    关注

    I think you should change your key to:

    $id = $is['ID'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题
  • ¥15 有没有人能解决下这个问题吗,本人不会编程
  • ¥15 plotBAPC画图出错
  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗