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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T20:42:38+00:00 2026-05-13T20:42:38+00:00

$content = ‘<h3>popular tags »</h3><hr>’; $result = $db->sql_query(SELECT tags FROM .DOWNLOAD_TABLE. ); while($row =

  • 0
   $content = '<h3>popular tags »</h3><hr>';

    $result = $db->sql_query("SELECT tags FROM ".DOWNLOAD_TABLE." ");
    while($row = $db->sql_fetchrow($result)){
     $dl_tags_id = $row['tags'];
     $dl_tags_id_ex = explode(" ",$dl_tags_id)   ;
     $dl_tags_id = array_unique($dl_tags_id_ex);

     $c = count($dl_tags_id);
     for($i=1;$i<$c-1;$i++){
//for loop content

     }
    }
    echo $content;

Hey guys. I used the above code to show my popular tags. As you can see in the code, I have two tables, one is download table that stores tags ID in array format such as:

20 21 13 14

And the other one is tags table that define those IDs

Now the only problem is that when printing this code, I can see duplicated tags as:

white(2)
blue(4)
white(2)

I wonder how prevent showing duplicated output.

Thanks in advance

  • 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-13T20:42:39+00:00Added an answer on May 13, 2026 at 8:42 pm

    this is happening because you’re doing the array_unique call on each row!

    You’re doing this:

    while($row = $db->sql_fetchrow($result)){
        $dl_tags_id = $row['tags'];
        $dl_tags_id_ex = explode(" ",$dl_tags_id)   ;
        $dl_tags_id = array_unique($dl_tags_id_ex);
        // rest of code...
    }
    

    when really, you want to do this:

    $dl_tags_all = '';
    while($row = $db->sql_fetchrow($result)){
        $dl_tags_all .= ' '.$row['tags'];
    }
    $dl_tags_id_ex = explode(" ",substr($dl_tags_all,1));
    $dl_tags_id = array_unique($dl_tags_id_ex);
    //rest of code....
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some content from server using $.ajax() function. I try to replace some
My app streams content (fixed sized files, hence quotation marks) from an HTTP server
Will content requested over https still be cached by web browsers or do they
What is the content type for MHT files?
I am serving all content through apache with Content-Encoding: zip but that compresses on
I have a content query web part that queries by content type against a
I am studying the content of Programming Ruby- The Pragmatic Programmer's Guide but the
I have some content that i have to render as a excel file in
I'm using the content query web part and have exported it to a webpart
I have a content management application in the root of my website, and I'm

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.