Jump to content

[SOLVED] Straighten out this order?


djfox

Recommended Posts

I have a code to display items via listing their price by lowest to highest (ORDER BY sellprice ASC). Technically this works.

 

Say we have 5 items:

Item 1: 50

Item 2: 10

Item 3: 45

Item 4: 100

Item 5: 60

 

It displays the items like this:

Item 2: 10

Item 4: 100

Item 3: 45

Item 1: 50

Item 5: 60

 

This is the display I want:

Item 2: 10

Item 3: 45

Item 1: 50

Item 5: 60

Item 4: 100

 

I`ve seen other websites that can do this but I can`t figure out how to do this.

Link to comment
https://forums.phpfreaks.com/topic/80549-solved-straighten-out-this-order/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.