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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:28:40+00:00 2026-06-17T16:28:40+00:00

I need to give a different class name to every 6 divs within a

  • 0

I need to give a different class name to every 6 divs within a foreach loop. I thought my below idea would work, but every item seems to get the same div.

<?php $num = 0; ?>
<?php foreach ($divs as $div): ?>

    <?php if($num % 1 == 0): ?>
    <div class="threecol grey one">
    <?php elseif($num % 2 == 1): ?>
    <div class="threecol green two ">
    <?php elseif($num % 3 == 2): ?>
    <div class="sixcol blue last three">
    <?php elseif($num % 4 == 3): ?>
    <div class="threecol grey">
    <?php elseif($num % 5 == 4): ?>
    <div class="sixcol blue">
    <?php elseif($num % 6 == 5): ?>
    <div class="threecol green last">
    <?php endif; ?>

        Rest of html

    </div>

<?php $num++ ?>
<?php endforeach; ?>

To simplify i basically need

1st/7th/13th/19th…etc div to be <div class="threecol grey">

2nd/8th/14th/20th…etc to be <div class="threecol green">

3rd/9th/15th/21st…etc to be <div class="sixcol blue last">

4th/10th/16th/22nd <div class="threecol grey">

5th/11th/17th/23rd <div class="sixcol blue">

6th/12th/18th/24th <div class="sixcol blue">

  • 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-17T16:28:41+00:00Added an answer on June 17, 2026 at 4:28 pm

    Very ugly… why not

    $classes = array('grey one', 'green two', 'blue last three', 'grey', 'blue', 'green last');
    foreach($divs as $div) {
       $class = $classes[$i++ % 6];
       echo '<div class="threecol ' . $class . '">';
    }
    

    The main problem is that you’re continually changing the divisor in your modulo operation, so you’re always getting the 0 remainder.

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

Sidebar

Related Questions

I have a set of different interfaces and I need to give them access
I'd need to write a class with an overloaded operator [] which has different
I need to give business analysts a web tool to query row data in
I need to give users the opportunity to submit their details only once and
I need to give the countdown as shown here , for each item using
In my page I need to give my current variable as parameter to the
I have a block of text that I need to give a background colour
i am building a php based website but now i need to give user
When comparing doubles for equality, we need to give a tolerance level, because floating-point
I have this function in my js file. I need to give time for

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.