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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:08:06+00:00 2026-05-25T15:08:06+00:00

Hi I have a table in my database for product discount which looks something

  • 0

Hi I have a table in my database for product discount which looks something like this:

id  product quantity NewPrice

On my website in php at the moment:

for each row:
Price per unit when buying $quanity or more: $NewPrice

But what I would like is:

Price per unit when buying $quanity1-$quanity2: $NewPrice1
Price per unit when buying $quanity2-$quanity3: $NewPrice2
Price per unit when buying $quanity3 or more: $NewPrice3

So basically I would like to take the quanity-value from two different rows to make up the text for the price from the first row.

If that makes sense?

  • 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-25T15:08:07+00:00Added an answer on May 25, 2026 at 3:08 pm

    Order the results by product, quantity and then loop over the results and compare with the previous row:

    $lastRow = null;
    $sql = "SELECT * FROM prices ORDER BY product, quantity";
    $result = mysql_query($sql);
    while ($row = mysql_fetch_array($result)) {
        if ($lastRow and $lastRow['product'] == $row['product']) {
            echo "Price per unit when buying ".$lastRow['quantity']." - ".($row['quantity']-1).": ".$lastRow['price']."\n<br>";
        } elseif ($lastRow) {
            echo "Price per unit when buying ".$lastRow['quantity']." or more: ".$lastRow['price']."\n<br>";
        }
        $lastRow = $row;
    }
    if ($lastRow) {
        echo "Price per unit when buying ".$lastRow['quantity']." or more: ".$lastRow['price']."\n<br>";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table something like this: Product SellingPrice Cost Profit Product 1 49
i have database table like this +-------+--------------+----------+ | id | ip | date |
I have a database table called Warehouse this Warehouse's linked to a Product table
I have a database table which stores products. Each product can have multiple colours.
I am using Mysql database. I have 3 table-: table Column tier_price customer_id,sku(Unique),price,website catalog_product
I have a Database and a table with about 200 mb data. (Product descriptions,
i have a database table of website links. i have another table of tags,
I have a table in database that is having some fields one of which
that my problem: I have database table like that: id (AI) market_id 1 6
I'm using LINQ to SQL and have a database table called Product with 20

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.