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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:58:51+00:00 2026-05-15T10:58:51+00:00

So this is pretty basic, I know! Sorry, just one of those days. I’ve

  • 0

So this is pretty basic, I know! Sorry, just one of those days.

I’ve got an array of tags collected from a database. There could be any number of tags in this array. However, I only want to output 4.

So I currently have this code:

$iteration = 0;
foreach ($tagarray as $tag) { ?>
<div class="tagbutton listv">
<span><?php echo $tag; ?></span>,
</div>  
<?php 
$iteration++;
    if ($iteration == 4) {
        break;
    }
} ?>

You’ll see after </span> there’s a , comma. Obviously this looks weird if the output looks like this:

tag1, tag2, tag3,

With a trailing comma. So I thought I could put this where the comma currently is:

<?php if ($iteration < count($tagarray) {echo ",";} ?>

That works, but, only when the count of $tagarray is greater than 4 or something. And, like I say, $tagarray could be any value.

I also tried

<?php if ($iteration == 0 || $iteration == 1 || $iteration == 2 || $iteration == 3) {echo ",";}?>

Which, although a bit repetitive, should work, doesn’t, because $tagarray could contain 2 tags, and therefore still have a trailing comma.

I realise this is probably a simple one, but hey, I really appreciate the help!

Thanks!

Jack

  • 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-15T10:58:51+00:00Added an answer on May 15, 2026 at 10:58 am

    If you want to do it manually, just prepend the comma before any tag but the first one. Use a control variable to detect the first tag.

    $iteration = 0;
    $first=true;
    foreach ($tagarray as $tag) { ?>
    <div class="tagbutton listv">
    <span><?php 
    if($first){$first=false;}
    else{echo ",";}
     echo $tag; 
    ?></span>
    </div>  
    <?php 
    $iteration++;
        if ($iteration == 4) {
            break;
        }
    } ?>
    

    If you want to use library functions, use implode as suggested by Cetra and Bogdan.

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

Sidebar

Related Questions

I know this is a pretty basic question, and I think I know the
This is pretty simple, I come from a swing/awt background. I'm just wondering what
So this seems pretty basic but I can't get it to work. I have
This pretty much has me defeated. On XP and earlier versions of Windows you
This is pretty weird. I have my Profiler open and it obviously shows that
This is pretty trivial, but I noticed on SO that instead of an offset
I thought this was pretty straight forward but I don't get the same results
I think this is pretty typical, you have the same website project with an
I'm having some weird issues with Xcode, and this is pretty much impossible to
This is a pretty-much theoretical question, but.. How much of an operating system could

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.