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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T03:33:59+00:00 2026-05-25T03:33:59+00:00

I am developing an API using Codeigniter and in this API the users can

  • 0

I am developing an API using Codeigniter and in this API the users can tag
themself. I need to display the 10 most popular tags (most frequestly used tags).
How can I do that?

Update

The tag table contains:

id, user_id, tag, created_at, updated_at
  • 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-25T03:34:00+00:00Added an answer on May 25, 2026 at 3:34 am

    Jonathan, depending on your setup the solution will be different, I’m going to suggest something a bit different than what your table structure looks like, you can use it if you want to.

    .--------------.    .-------------.
    |   userTags   |    |     tags    |
    .--------------.    .-------------.
    |  id          |    | id          |
    |  user_id     |    | tagName     |
    |  tag_id      |    .-------------.
    .--------------.
    

    To add a tag to your database:
    $data = array(‘tagName’ => ‘Mr. Niceguy’);
    $this->db->insert(‘tags’ => $data);

    To add a tag to your user, you could use the following in a model

    $data = array('user_id' => $uId, 'tag_id' => 1);
    $this->db->insert('userTags', $data);
    

    To recieve the most common used tags:

    $this->db->select('tag_id');
    $this->db->order('tag_id DESC');
    $this->db->limit(10);
    $this->db->join('tags', 'userTags.tag_id = tags.id');
    $this->db->get('userTags');
    

    Edit:

    If you have to use your setup, do this instead:

    $this->db->order_by('count(tag)', 'DESC');
    $this->db->group_by('tag', 'DESC');
    $tags = $this->db->get('userTags');
    
    foreach($tags->result() as $tag) {
        var_dump($tag->tag);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing an REST API using Codeigniter. I need to have all error
I'm developing a API that uses lambda expressions to specify properties. I'm using this
I am developing an API using PHP (Codeigniter) and Phils RESTserver. I am creating
I am developing an custom API for a web solution and I am using
I'm developing a twitter messaging utility using Twitter API (twitterizer). But since I'm within
When developing a plug-in to application, using the application API which doesn't run independently
The background I'm developing a REST API for a C#.NET web application using WCF.
I am developing a Windows API application without using MFC . I am using
I have just started developing using Youtube API and stuck in very beginning. I
I am developing a REST API layer for my application using Zend_Rest_Controller. I have

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.