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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:07:26+00:00 2026-06-09T06:07:26+00:00

I have 2 while loops, one inside the other. So while ($info5 = mysql_fetch_array($result5))

  • 0

I have 2 while loops, one inside the other.

So

while ($info5 = mysql_fetch_array($result5))
{

 print "</td>";

then I have this sql query

 include('database.inc');

$sql6 = "SELECT count(checkins.placeID) as methoda FROM checkins, places, activities WHERE activities.actID=places.placeActivity AND checkins.placeID = places.placeID and checkins.cityID = ".$city." group by checkins.placeID order by checkins.placeID, activityName";

$result6=mysql_query($sql6);
$count=mysql_num_rows($result6);

while($row = mysql_fetch_array($result6))
    {
     echo $row["methoda"];
 }
      print "</td></tr></table>" ;

        }?>

The problem is that I receive 1 table, for example like this:

Place1 -> 321

Place2 -> 321

Place3 -> 321

The order is right, but I receive it as an array!
The correct should be

Place1 -> 3

Place2 -> 2

Place3 -> 1

I don’t know how to split the array $row, or if it is a transpose problem, or the count command has stacked, etc. I don’t really know! Please help me.

  • 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-06-09T06:07:28+00:00Added an answer on June 9, 2026 at 6:07 am

    The code should be something like this:

    include('database.inc');
    
    echo "<table>";
    
    //first query....
    
    while ($info5 = mysql_fetch_array($result5))
    {
    
        $sql6 = "SELECT count(checkins.placeID) as methoda FROM checkins, places, activities WHERE activities.actID=places.placeActivity AND checkins.placeID = places.placeID and checkins.cityID = ".$city." group by checkins.placeID order by checkins.placeID, activityName";
    
        $result6=mysql_query($sql6);
        $count=mysql_num_rows($result6);
    
        echo "<tr>";
        while($row = mysql_fetch_array($result6))
        {
           echo "<td>".$row["methoda"]."</td>";
        }
        print "</tr>" ;
    
    }?></table>
    

    Edit it according to your requirement. Notice the placement of td, tr and table tags

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

Sidebar

Related Questions

I have two while loops running one after the other (not inside of each
I have a while loop from a query called $result . Inside this while
I have two while conditions, one inside the other, with booleans to control them.
I have an nsthread, a while loop within this one. It's getting objects from
I have one query. Through while loop I am displaying three random songs from
So with pygame you have a while loop that loops continuously, then your event
I have a while loop that loops through 3 results and echo's these out
What I want to do is have a while statement which loops whilst the
I have two static (STATIC_MASS) SpaceManager sprites. One is a child of the other
Guys, I have the following code that is inside a big while loop that

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.