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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:04:15+00:00 2026-05-25T20:04:15+00:00

Sorry about the lame title, but I really don’t know how to explain it!

  • 0

Sorry about the lame title, but I really don’t know how to explain it!

Basically, I want to query the game categories from a table, then query games from another table which equal the category of the category queried from the categories table.

Got me so far?

This is the code I have so far…

$get_categories_query = mysql_query("
  SELECT * 
    FROM game_categories 
ORDER BY category_name ASC");
while ($row = mysql_fetch_array($get_categories_query)) {
  $category_name      = $row['category_name'];
  $get_category_games = mysql_query("
    SELECT * 
      FROM games 
     WHERE category = '$category_name' 
  ORDER BY RAND() LIMIT 5");
  while ($row = mysql_fetch_array($get_category_games)) {
    $category_game_id    = $row['id'];
    $category_game_title = $row['game_title'];
    $category_game_display .= '<li><img 
      class="category_module_img" 
      src="http://www.game.assets.buddyweb.me/' . 
        $category_game_id . 
        '/_thumb_100x100.png"></li>';
  }
  $category_display .= '<div class = "category_module">
  <h4>'.$category_name.'</h4>
  '.$category_game_display.'
  <div class="play_more_btn">More</div>
  </div>';
}

But what I get from that is every game appearing from the query from the first category in the list.

  • 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-25T20:04:15+00:00Added an answer on May 25, 2026 at 8:04 pm

    I think the problem is the $row variable.

    Try this:

    $get_categories_query = mysql_query("SELECT * FROM game_categories ORDER BY category_name ASC");
    
    while($row = mysql_fetch_array($get_categories_query))
    {
        $category_name = $row['category_name'];
        $get_category_games = mysql_query("SELECT * FROM games WHERE category = '$category_name' ORDER BY RAND() LIMIT 5");
        $category_game_display = false; // new!!
    
        while($row_cat = mysql_fetch_array($get_category_games))
        {
            $category_game_id = $row_cat['id'];
            $category_game_title = $row_cat['game_title'];
            $category_game_display .= '<li><img class = "category_module_img" src = "http://www.game.assets.buddyweb.me/'.$category_game_id.'/_thumb_100x100.png"></li>';
        }
    
        $category_display .= '<div class = "category_module"><h4>'.$category_name.'</h4>'.$category_game_display.'<div class = "play_more_btn">More</div></div>';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry about the title, but I don't know how to say what I want.
Sorry about the weird question title, but I don't really know what to call
Sorry about the vague title, but I really don't know how to describe this
Sorry about the wording of the question, I don't really know how to put
Sorry about the vague title, but i didnt know how to ask the question
Sorry about the title but could not come up with anything really informative and
I really didnt know what to put to the title so sorry about that.
Sorry about the title, don't know how to phrase this. I have my own
I'm sorry about the title. I know it is rather poor but I wasn't
Sorry about a vague title, but here's what i am trying to do. I

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.