douzuanze0486 2014-06-26 03:37
浏览 39
已采纳

来自mysqli php最后一行的结果

I want to get the result from the current and the last row from mysqli so I can see how the values changed. I need this for a statistical counter for my website

  • row 1 = 400
  • row 2 = 500
  • row 3 = 650

This is my code so far:

while ($row = $Result->fetch_object())
{
    echo '
        <tr>
            <td>'.add_date_create($row->stat_AddTime).', '.add_time_create($row->stat_AddTime).'</td>

            <td>'.$row->stat_hacks_view.' +('.$row->stat_hacks_view-$row_stat_hacks_view--.')</td>

            <td>'.$row->stat_hacks_count.'</td>

            <td>'.$row->stat_game_view.'</td>

            <td>'.$row->stat_dev_count.'</td>
        </tr>
        ';
}

[...]

The result should be something like this:

  • blabla row 1 400 +(400)
  • blabla row 2 500 +(100)
  • blabla row 3 650 +(150)

I hope I could explain what I mean.

I want to get that with fetch_object() if possible

Thanks!

展开全部

  • 写回答

2条回答 默认 最新

  • dou7851 2014-06-26 03:47
    关注

    use e.g. a $temp variable

    $temp = 0;
    while ($row = $Result->fetch_object())
    {
        $current_value = $row->XYZ; // XYZ is your current value
        $difference = $current_value - $temp;
        $temp = $current_value;
    
        echo '
            <tr>
                <td>'.add_date_create($row->stat_AddTime).', '.add_time_create($row->stat_AddTime).'</td>
    
                <td>'.$row->stat_hacks_view.' +('.$row->stat_hacks_view-$row_stat_hacks_view--.')</td>
    
                <td>'.$row->stat_hacks_count.'</td>
    
                <td>'.$row->stat_game_view.'</td>
    
                <td>'.$row->stat_dev_count.'</td>
            </tr>
            ';
    }
    

    i don't know where to echo $difference in your code then, but maybe in the last <td>...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部