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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:54:42+00:00 2026-06-10T14:54:42+00:00

// current session id $sid = session_id(); // get current cart session $sql =

  • 0
// current session id
$sid = session_id();

// get current cart session
$sql = "SELECT * FROM tbl_cart WHERE ct_session_id =  '$sid'";
$result = dbQuery($sql);

// get all the items in the car category
$query = "SELECT pd_id FROM tbl_product WHERE cat_id ='28'";
$r = dbQuery($query);

//Cycle through the cart and compare each cart item to the cars to determine
  if the cart contains a car in it.
         while($cart = dbFetchAssoc($result)){
    while($product = dbFetchAssoc($r)){
        echo $cart['pd_id'] . " - ";
        echo $product['pd_id']. "<br>";
    }
}

dbFetchAssoc() is a custom database layer that is basically (mysql_fetch_assoc).

Im trying to take the rows from the query and use that information to compare. The code above with the echo statements is just echoing for debug purposes. Is there a particular reason that the while loop exits after the nested loop?

  • 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-10T14:54:43+00:00Added an answer on June 10, 2026 at 2:54 pm

    Yes. You need to run the query again, since each time you call dbFetchAssoc($r) you’re advancing that cursor.

    $sql = "SELECT * FROM tbl_cart WHERE ct_session_id =  '$sid'";
    $result = dbQuery($sql);
    
    // get all the items in the car category
    $query = "SELECT pd_id FROM tbl_product WHERE cat_id ='28'";
    
    while($cart = dbFetchAssoc($result)){
        $r = dbQuery($query);
        while($product = dbFetchAssoc($r)){
            echo $cart['pd_id'] . " - ";
            echo $product['pd_id']. "<br>";
        }
    }
    

    Here is an optimised version which doesn’t hit the database as much. It’s specific to this particular question, though, and would be an equally bad choice if the queryset was particularly large – it’s run into memory problems instead of speed problems.

    $sql = "SELECT * FROM tbl_cart WHERE ct_session_id =  '$sid'";
    $result = dbQuery($sql);
    
    // get all the items in the car category
    $query = "SELECT pd_id FROM tbl_product WHERE cat_id ='28'";
    $r = dbQuery($query);
    
    // cache the product results into an array
    $products = Array();
    while($product = dbFetchAssoc($r)){
        $products[] = $product['pd_id']
    }
    
    while($cart = dbFetchAssoc($result)){
        $index = 0;
        while($product = dbFetchAssoc($r)){
            echo $cart['pd_id'] . " - ";
            echo $product[$index]. "<br>";
            $index++;
        }
    }
    

    I haven’t tested this second code, but the idea should be clear enough.

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

Sidebar

Related Questions

I have some code that gets the current logged in user. userID = request.session.get(_auth_user_id)
I need to get current session Id without hitting the session (to give it
How to get any http session by id or all currently active http sessions
Does it start a current session based on cookies? Got that from the PHP
I'm trying to access the current hibernate session in a test case, and getting
My session seems to only be valid in the current window/tab. Also it seems
I have a JSF session scope bean and I'm keeping current user(logged in) information
how to get the logged in current users seesion id? I am using 2.0
Current version of Twiiter has a tab bar as shown below. When I select
Here is my problem: window.location.href = (X(1)S( + @Session.SessionID + ))/Cart/AddToCart?productID= + @Model.ProductID; Basically

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.