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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:01:54+00:00 2026-05-16T06:01:54+00:00

I have the following code: (query added) $weight_table = mysql_query (SELECT * FROM .$prefix.weight

  • 0

I have the following code: (query added)

$weight_table = mysql_query ("SELECT * FROM ".$prefix."weight ORDER BY wlimit DESC");    
foreach ($weight as $area => $weight) {
        echo $weight;

        while ($weight_row = mysql_fetch_array($weight_table)) {
            print_r($weight_row);
            $limit = $weight_row['wlimit'];
            if ($weight < $limit) {
        $weight_level[$count] = $weight_row;
            }
        }
    }
    print_r($weight_level);

Where $weight_table is a mysql query result and $weight is an array.

My problem is that $weight_table seems to be expiring after the first while loop, so that the $weight array is effectively treated as having one item. This is a problem!

Can anyone suggest why php would forget a mysql result after the first use?

  • 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-16T06:01:55+00:00Added an answer on May 16, 2026 at 6:01 am

    The first iteration through the for loop, you’re fetching all of the records from the mysql result set. Your inner while loop will run until all the rows are gone. How many rows do you want it to pull?

    Also you’re re-using $weight which is a bad idea and may be causing side effects.

    foreach ($weight as $area => $wt) { 
       echo $wt; 
    
       while ($weight_row = mysql_fetch_array($weight_table)) { 
          print_r($weight_row); 
          $limit = $weight_row['wlimit']; 
          if ($wt < $limit) { 
             $weight_level[$count] = $weight_row; 
          } 
       } 
    
       mysql_data_seek($weight_table,0);
    } 
    print_r($weight_level); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code $result = $handle->select()->from('store_details') ->where('store_details.store_id=?', $id) ->columns('store_details.store_name'); //->query(ZEND_DB::FETCH_OBJ); However, when
I have the following code: $catsQuery = SELECT id, category FROM categories ORDER BY
Have added the following code to my SQL query: (Note cut down version) DECLARE
I have the following code: employees = Employee.all() employees.projection('first_name') employees.filter('passport_id =', passport_id) employees.order('-added') results
I have the following code: def query(self,query): lock = QMutexLocker(self.mutex) reply = self.conn.query(query) if
I have the following code: //-------------------------------------------------------------------------- // 2) Query database for data //-------------------------------------------------------------------------- $result
Right, starting to go crazy here. I have the following code: var query =
I have the following code for running a mongo query, Where the 'mongotester' is
I have the following code and got myself confused: I have a query that
i have the following piece of code in php: define('QUERY', $some_query_string); if(empty(QUERY) || mb_strlen(QUERY)

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.