Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8859419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:03:29+00:00 2026-06-14T15:03:29+00:00

I am working in a cakephp 2+ project. I am implementing pagination for sorting

  • 0

I am working in a cakephp 2+ project. I am implementing pagination for sorting product listing in two left and right div combination. I am able to make left div but could not make right one since offset can not be set in pagination. I need half items in left div and half items in right div, so I can set limit but not able to offset. How can i do this?

Controller code

public function index()
{

$rows=$this->Product->find('count', array('conditions'=>array('Product.allow'=>1)));
if($rows%2==0) 
{
$this->paginate = array('conditions' => array('Product.allow'=>1,'limit'=>($rows/2));
$list_l = $this->paginate('Product');
$this->set('left_list',$list_l);
$this->paginate = array('conditions' => array('Product.allow'=>1,'limit'=>($rows/2), 'offset'=>$rows/2));
$list_r = $this->paginate('Product');
$this->set('right_list',$list_r);
} 
else 
{
$right_list=$this->Paginate('Product', array('Product.allow'=>1),array('limit'=>($rows-round($rows/2)), 'offset'=>round($rows/2)));
}
}

View Code

Foreach loop with array returned from controller
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T15:03:31+00:00Added an answer on June 14, 2026 at 3:03 pm

    Why not call $this->paginate() once and loop over all the items and perform the split in the View itself? Performing both calls is rather wasteful of database resources.

    In that case you would have have a call to $this->paginate in the Controller. Say you want five items in the left column and five in the right:

    $products = $this->paginate = array('conditions' => array('Product.allow'=>1, 'limit' => 10));
    $this->set('products', $products);
    

    In the view:

    <div class="left-column">
    <?php
      foreach ($products as $product) {
        debug($product);
        if ($count === 5) {
          echo "</div>\n<div class=\"right-column\">";
          $count = 1;
        }
        $count++;
      }
    ?>
    </div>
    

    Another way would be to use array_chunk in the Controller. Using this core PHP function you’ll end up with multidimensional numerically indexed array which you can loop over and wrap the child arrays in their relevant divs.

    <?php
      $limit = round(count($products)/2);
      $products = array_chunk($products, $limit);
      foreach ($products as $index=>$groupedProducts) {
        echo ($index === 0) ? '<div class="left-column">': '<div class="right-column">';
        foreach ($groupedProducts as $product) {
          debug($product);
        }
        echo '</div>';
      }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a CakePHP project and am currently building the user authentication part
I've just started working on an existing CakePHP project. I will be developing a
I’m working on cakephp 1.3. I’m finding issue in character encoding. I’ve two model
I have hosted my cakePhp project on hostgator. Its not able to retrieve data
I am working on a project in CakePHP 1.3 which will store a collection
I am working on a CakePHP project that has a database populated from multiple
I am working on a CakePHP 2 project. It originally started out in 2.0.x
I am working on my first CakePHP project. I am building a form on
So i'm working with CakePHP v1.2.5. On my current project, I decided to start
I was working locally on my computer on a cakephp project for 3 days.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.