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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:07:13+00:00 2026-06-05T09:07:13+00:00

Hi I want to add content after every 3rd div in the loop. Here

  • 0

Hi I want to add content after every 3rd div in the loop. Here is below code but I am not getting even render content “Hi this is the 3d div”

Its not detecting every 3rd div.

<?php
    function q_list_item($q_item)
    {
        $count = 0;

        $this->output('<DIV>');
        $this->my_items;    
        $this->output('</DIV>');

        $count++;           

        if($count % 3 == 0) {
            echo 'Hi this is the 3rd div';
        }

    }
?>

—-[Actual Function]———————————————–

<?php

function q_list_item($q_item)
{

    $this->output('<DIV CLASS="qa-q-list-item'.rtrim(' '.@$q_item['classes']).'" '.@$q_item['tags'].'>');

    $this->q_item_stats($q_item);
    $this->q_item_main($q_item);
    $this->q_item_clear();

    $this->output('</DIV> <!-- END qa-q-list-item -->', '');

}
?>
  • 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-05T09:07:16+00:00Added an answer on June 5, 2026 at 9:07 am

    You are resetting the $count to 0 at the top of this function, so it will always be 1 when you run the if statement at the end of the function.

    This may help with your issue, although I can’t tell if your code is in a class or not as it doesn’t look like it is, but you are using $this-> in there. Essentially, move the instantiation of the counter outside of the function:

    <?php
        $q_list_count = 0;
    
        function q_list_item($q_item)
        {
            $q_list_count++;
    
            $this->output('<DIV>');
            $this->my_items;    
            $this->output('</DIV>');
    
            if($q_list_count % 3 == 0) {
                echo 'Hi this is the 3rd div';
            }
    
        }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to load WebBrowser content and after that I want to add some
I want to add colons to all my label elements form label:after { content:
I want to add large string content to a container dynamically. There are 60
I want to add social network features over a content website the website is
I want to add a custom message once someone saves a specific content-type telling
I found this content expand/collapse jQuery plugin. I want to add fade-in effect to
I have 3 tables: Book, Section and Content. I want to add many-to-many relation
Long story short, I want to add an absolutely positioned pseudo element after another
I want to add content into the middle of a text file in Powershell.
I have this HTML: <div class=region-list id=region_North_America> <strong>North America</strong> </div> and want to add

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.