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条)

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改