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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:07:56+00:00 2026-06-06T21:07:56+00:00

I tested looping nested While statements so: $count1 = 0; while ($count1 < 3)

  • 0

I tested looping nested While statements so:

$count1 = 0;

while ($count1 < 3) {
 $count1++;
 $count2 = 0;
 echo "count1: ".$count1."<br />";

    while ($count2 < 3) {
    $count2++;
    echo "count2: ".$count2."<br />";
    }
}

This works perfectly (looping three times each) with results:

count1: 1
 count2: 1
 count2: 2
 count2: 3
count1: 2
 count2: 1
 count2: 2
 count2: 3
count1: 3
 count2: 1
 count2: 2
 count2: 3

Then I tried the same with a loop using mysql_fetch_assoc ($ContactsInterests is a two row associative array, and $LatestNews has 50 rows) i.e.

$CI_count = 0;

while ($CI_Row = mysql_fetch_assoc($ContactsInterests)) { //loop thru interests
$CI_count++;
$LN_count = 0;
echo "CI_count: ".$CI_count."<br />";

while ($LN_Row = mysql_fetch_assoc($LatestNews)) { //loop thru news
    $LN_count++;
    echo "LN_count: ".$LN_count."<br />";

}
}

The results are:

CI_count: 1
 LN_count: 1
 LN_count: 2
 ...
 LN_count: 50
 LN_count: 51
CI_count: 2

But where it the second iteration of LN_count? I don’t understand why the LN_count didn’t increment a second time.

Help appreciated.

  • 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-06T21:07:57+00:00Added an answer on June 6, 2026 at 9:07 pm

    mysql_fetch_assoc does iteration for “mysql result” type. Seeks index for each fetch.
    you must use mysql_data_seek to go to the first result like;

    <?php
    
        $CI_count = 0;
    
        while ($CI_Row = mysql_fetch_assoc($ContactsInterests)) { //loop thru interests
            $CI_count++;
            $LN_count = 0;
            echo "CI_count: ".$CI_count."<br />";
    
            mysql_data_seek($LatestNews,0);
            while ($LN_Row = mysql_fetch_assoc($LatestNews)) { //loop thru news
                $LN_count++;
                echo "LN_count: ".$LN_count."<br />";
    
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tested each statement on its own and it works, but when I use
Tested app in Instrumens for memory leak getting multiple leaks for using multiple times
I tested out the script below in jsfiddle and it works fine, can someone
I tested this on both .Net 4.0 and .Net 4.0 CP, same result. This
While looking for a solution to this question , I attempted to add a
I tested source code from this tutorial http://query7.com/php-jquery-todo-list-part-1 and just deploy their source taken
RBAC is well understood, so this is beyond RBAC. Looking for an efficient/tested approach
I'm looking for a well tested simple in-memory binary tree implementation for c#. I
I'm looking for a javascript diff algorithm implementation or library, which has been tested
I tested the following code in firefox scratchpad and got interesting result? var date=new

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.