doq13207 2016-03-08 08:59
浏览 27
已采纳

注意:未定义的索引:comment_author

I tried many things from StackOverflow regarding this error but with no luck.

I try to show a reply from a comment. The reply comment is shown along with the date and hour when posted but the author who posted the reply is not shown.

The page with error is comments.php on the line $com_name = $row['comment_author'];

The code is:

<?php
    $get_id = $_GET['post_id'];

    $get_com = "select * from comments where post_id='$get_id'";

    $run_com = mysqli_query($con, $get_com);

    while($row=mysqli_fetch_array($run_com)){

        $com = $row['comment'];
        $com_name = $row['comment_author'];
        $date = $row['date'];

        echo "

            <div id='comment'>
            <h3>$com_name</h3><i>Said</i> on $date
            <p>$com</p>
            </div>
        ";
    }
?>

Hope to sort out this error.

Thank you and best regards.

  • 写回答

2条回答 默认 最新

  • dpkt17803 2016-03-08 09:09
    关注

    It looks like there are no column with name comment_author. But there are field user_id. You need to modify you query to below (assume user table users has fields user_name and user_id)

    $get_com = "select c.date, c.comment, u.user_name as comment_author 
        from comments c inner join users u on c.user_id = u.user_id 
        where c.post_id='$get_id'";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求高通平台Softsim调试经验
  • ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
  • ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
  • ¥15 栅极驱动低侧烧毁MOSFET
  • ¥30 写segy数据时出错3
  • ¥100 linux下qt运行QCefView demo报错
  • ¥50 F1C100S下的红外解码IR_RX驱动问题
  • ¥20 基于matlab的航迹融合 航迹关联 航迹插补
  • ¥15 用Matlab实现图中的光线追迹
  • ¥15 联想笔记本开机出现系统更新界面