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 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

below content is taken from Best practice: Writing efficient code but i didn't understand
Displaying content’s based on category and tags criteria works well but how should we
I need to get content from a site I need to get /html/body/div/div[2]/table/tbody/tr/td/div/div[2]/form/fieldset[2]/table[2] or
WARNING: content not work-appropriate This does not retrieve image successfully from a web page
Content type Events has intro, body and an event date field (using Date module).
Content: 1. Text is here. 20. More text. Why does this Vim search and
content_type = ContentType.objects.get_for_model(Map) maps = maps.extra(select=SortedDict([ ('member_count', MEMBER_COUNT_SQL), ('topic_count', TOPIC_COUNT_SQL), ]), select_params=(content_type.id,)) and the
Content of profile.xml: <files> <file folder=CaptureServer filename=CSConfig object=CSConfig> <Profile name=BBH1200Kofax> <OutputCache>\</OutputCache> <EncryptedConnectionString>564rgr=</EncryptedConnectionString> <ConvertDocsBeforeRelease>false</ConvertDocsBeforeRelease> </Profile>
Will content requested over https still be cached by web browsers or do they
The Content Assist in Eclipse 3.4 and 3.5 has stopped working for me. When

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.