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

时间:2016-01-01 11:35:04

标签: php mysql loops foreach phpmyadmin

我想在foreach循环中获取两条记录。

获取记录后,接下来两个分页记录

        $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';
                     }
                }
        ?>

如何解决这个问题?请帮我 !

Thanx for Advance!

1 个答案:

答案 0 :(得分:0)

请使用array_chunk() 请参阅此链接:http://php.net/manual/en/function.array-chunk.php

即:print_r(array_chunk($post_img_id, 2, true));

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

在你的代码中检查它,将你的数组放在2的部分中,你将获得2个记录的数组,这样它将更容易帮助你分页记录。