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 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化