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

  • Home
  • SEARCH
  • 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 8792929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:03:11+00:00 2026-06-13T23:03:11+00:00

I have a shopping cart form that once I submit the form I loop

  • 0

I have a shopping cart form that once I submit the form I loop the POST values to print it on a table.Here is the loop for the items sold

<?php
    for($i = 0; $i < count($_POST["id"]); $i++){
        echo "<tr>";
        echo "<td>".$_POST["name"][$i]."</td>";
        echo "<td>$ ".$_POST["price"][$i]."</td>";      
        echo "<td>".$_POST["quantity"][$i]."</td>";
        $total[$i] = $_POST["price"][$i]*$_POST["quantity"][$i];
        echo "<td>$ ".$total[$i]."</td>";
        echo "</tr>"; 
 ?>

My question is based on this loop I need to compare it to a product DB that has the following fields

|Name | Price | QtyLeft | QtySold | where QtyLeft is the current quantity in stock. So based on the code above how do I query my table to subtract the quantity of the item sold to the QtyLeft and update QtySold?

  • 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-13T23:03:12+00:00Added an answer on June 13, 2026 at 11:03 pm

    For each item in the loop:

    $quantity = intval($_POST["quantity"][$i]);
    $id = intval($_POST["id"]);
    $sql = "UPDATE product SET QtyLeft = QftLeft - $quantity, QtySold = QtySold + $quantity WHERE id = $id";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that submit a shopping cart to Google Checkout. The form
I have an asp based shopping cart that uses html based templates to display
I have some accent issues in a shopping cart script. Here's a part of
I have a ListView that displays a shopping cart. It was working fine until
I have a query on the db of a shopping cart that involves a
I'm working on a shopping cart in a website and I have my items(which
I have a rails app (rails 3.1.3) that has a shopping cart model. I
I am using a third party shopping cart that sends a registration form to
I have a Transactions object (as a part of a shopping cart) that belongs_to
On my local machine, when I submit this form, and I do have items

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.