dongliang2005 2016-01-01 11:35
浏览 101
已采纳

在php中的foreach循环中获取特定记录

I want to fetch two record in foreach loop.

After fetch record, next two record for pagination

        $post_img_id=array(21,24,25,28,40,44,46,47,52,78,88,89,92,101);  //this is id of table data

        $total=count($post_img_id,COUNT_RECURSIVE); //total record

        $item=2;

        $total_page=ceil($total/$item);

        $cur_page=isset($_GET['page'])?$_GET['page']:1;

        $k=($cur_page-1)*$item;

                foreach($post_img_id as $id)
                {
                    if($co<=10){
                  $post_img_q="select * from $post where id=$id LIMIT $k,$item";
                  $post_img_res=mysql_query($post_img_q) or die(mysql_error());

                     while($post_img_row=mysql_fetch_assoc($post_img_res))
                     { 

                        echo 'record';
                     }
                }
        ?>

how to solve this problem ? please help me !

Thanx for Advance !

  • 写回答

1条回答 默认 最新

  • douji9734 2016-01-01 11:38
    关注

    please use array_chunk() refer this link :http://php.net/manual/en/function.array-chunk.php

    i.e : print_r(array_chunk($post_img_id, 2, true));

    $nameofArray = array_chunk($post_img_id, 2, true);
    foreach($nameofArray as $Array)
    {
    //your code here...
    }
    

    check this in your code its devide your array in portion of 2 where you will get array of 2 records so it will help you more easily to paginate record.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 es 7.17.20版本生成时间戳
  • ¥15 wpf dategrid表头排序图标自定义
  • ¥15 分析下图所示同步时序逻辑电路的逻辑功能。
  • ¥15 halcon联合c#遇到了问题不能解决
  • ¥15 xshell无法连接提示ssh服务器拒绝密码
  • ¥15 AT89C52单片机C语言关于串口通信的位操作
  • ¥20 需要步骤截图(标签-服务器|关键词-map)
  • ¥50 gki vendor hook
  • ¥15 灰狼算法和蚁群算法如何结合
  • ¥15 这是一个利用ESP32自带按键和LED控制的录像代码,编译过程出现问题,请解决并且指出错误,指导如何处理 ,协助完成代码并上传代码