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

  • SEARCH
  • Home
  • 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 7631029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:14:55+00:00 2026-05-31T06:14:55+00:00

I have this for each loop: foreach($downloads as $dl) { echo seosvelniau2($dl[‘title’]); } By

  • 0

I have this for each loop:

  foreach($downloads as $dl) { 
echo seosvelniau2($dl['title']);
}

By default it gives me 50 results, is there any way to split this foreach loop into two (1-25) and (26-50), so I can put both into two separate table columns?
I know, that i can make loop to show only first 25 results like this:

 $i=0;
foreach($downloads as $dl) { 
 $i++;
    echo seosvelniau2($dl['title']);
if ($i == 25)
break;
    }

but how to do second loop to show (26-50) results?

  • 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-05-31T06:14:57+00:00Added an answer on May 31, 2026 at 6:14 am

    You can divide the array $downloads even before the loop.(using array_chunk)

    $Chunks = array_chunk($downloads , 25);
    foreach($Chunks[0] as $dl)
    {
           //Group 1
    }
    
    foreach($Chunks[1] as $dl)
    {
        ///Group2
    }
    

    EDIT: Here’s a general example: (In case you have more than 50 elements)

    $Chunks = array_chunk($downloads , 25);
    foreach($Chunks as $oneChunk)
    {
      //New group of 25 elements.
      foreach($oneChunk as $dl)
      {
    
      }   
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this loop // go through each alumni foreach (esDL.Alumni currAlumni in allAlumnis)
I have a for each loop like this $sn_count = 1; $prodfilter = ;
I have a loop that can look like this: For Each article In artAll
I have loop and each iteration of Hash looks like this: [1, {:clid=>1, :nvz=>4,
I have a loop created with each, check this example: $('.foo').each(function(i){ //do stuff });
I have this loop in PHP that echoes out a table of results, <table
i have this crazy label for each time i create a migration that use
I have this little script that shows one wisdom each day. so I have
I have this code which will include template.php file from inside each of these
i have this php code and keep on getting errors upon fixing each error.

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.