Hi all,

Need some advice as to how to sort a array:

Structure:

partnerID
partnerName
total
totalPaid
totalUnpaid


So basically there will be many entries for the following:

eg:

partnerID  | partnerName | total  | totalPaid  | totalUnpaid
1                  marc               12      5                7
5                  berty               30    12                18
7 sarah 19 12 7 So they way I want to sort these rows is by total, totalPaid, totalUnpaid all descending.
Output should be:
partnerID  | partnerName | total  | totalPaid  | totalUnpaid
5                  berty               30    12                18
7 sarah 19 12 7 1 marc 12 5 7



I have looked at the manual and found uasort and array_multisort, but these don't seem to be appropriate unless Im missing something but the examples found are very vague.
If anyone can help that would be great,

Thanks in advance
Angelo

------------------------------------------------------------------------
Angelo Zanetti
Systems developer
------------------------------------------------------------------------

*Telephone:* +27 (021) 469 1052
*Mobile:*       +27 (0) 72 441 3355
*Fax:*            +27 (0) 86 681 5885
*
Web:* http://www.zlogic.co.za
*E-Mail:* [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to