Jump to content

Ordering rows by value


stualk

Recommended Posts

Is it possible to display rows in order of a value within the rows? I need to do this without saying 'order by' in the 'select from' statement. The reason is because i'm using values from my select from statement to work out totals. Once i've worked out the totals i'm displaying the rows as per the code below. This works fine but I want to display the row containing the smallest $TOTAL_REDUCED value first, with the next highest next, and so on.

 

Basically, what other ways of ordering rows are there in php?

 

echo("
  <tr height='50'>
    <td bgcolor='#FFCC66' width='25%'><strong><font size='2' face='Trebuchet MS'><a href='page.php?Step=StepTwo&&company_name=$company_name&&supplier_name=$supplier_name&&customer_id=$customer_id'>$supplier_name</a></font></strong></td>
    <td align='center' bgcolor='#FFCC66' width='25%'><a href='page.php?Step=StepTwo&&company_name=$company_name&&supplier_name=$supplier_name&&customer_id=$customer_id'><img border='1' src='images/logos/$logo'></a></td>
    <td align='right' bgcolor='#FFCC99' width='25%'><font size='2' face='Trebuchet MS'><strong>	£$TOTAL_REDUCED</strong></font></td>
    <td align='right' bgcolor='#FFCC99' width='25%'><font size='2' face='Trebuchet MS'><strong>$offer_number $monthtext $offer_year</strong></font></td>
  </tr>
");

Link to comment
Share on other sites

Uhm, arrays are a very useful thing. You didn't know any PHP when you started but obviously you learned some. Why avoid using something just because you don't know how.

Arrays are important and you'll need them eventually.

Go read a PHP book.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.