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 8794857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:18:29+00:00 2026-06-13T23:18:29+00:00

In a loop, I want to wrap first 5 items in a li ,

  • 0

In a loop, I want to wrap first 5 items in a li, and after that every 6 items in a li. I’m trying following code, but it is not working properly, it wraps first 5 items in a li, and after that it wraps only every sixth item in the li, but 7th – 12th without li.

$i = 0;
while ($i < 19){
    $i++;
    if($i == 1 ){ echo '<li>'; }
    if (($i > 5) AND ( $i % 6 == 0)){echo "<li>";}
    echo "<div>item " . $i . "</div>"; 
    if( $i == 5 ){ echo '</li>'; }
    if(($i > 5) AND ( $i % 6 == 0)) { echo "</li>"; }
}
if ($i < 5 ) { echo "</li>"; }
if (($i > 5) AND ($i % 6 != 0)) { echo "</li>"; }
  • 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-13T23:18:30+00:00Added an answer on June 13, 2026 at 11:18 pm

    Try this solution:

    for ($i = 1; $i < 20; $i++) {
        echo ($i === 1 || $i % 6 === 0) ? "<li>" : null,
            "<div>item {$i}</div>",
            ($i % 6 === 5) ? "</li>" : null;
    }
    if ($i % 6 !== 0) echo "</li>";
    

    I’ve tried to keep it as simple as possible.

    Code Example

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using a loop in wordpress to output posts. I want to wrap every
I have a piece of code that works but only for the first paragraph.
i want to loop trough all my delicious.com bookmarks and wrap a link arround
I have a for loop. Inside that loop I want to fill up an
I want to loop over the files that begin with '.' in directory x
I want to wrap my code in a function (and then put it in
I want to turn these three methods into one, but am unable to wrap
I'm working on creating a for-loop that calls a javascript effect and applies it
I'm trying to setup a loop in Wordpress that will show all posts from
Am I correct in thinking the following snippet does not work (the array items

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.