Re: [PHP] How to sort by 3rd row in an 2d-Array

2002-04-15 Thread Andrey Hristov
usort() /uksort()/uasort() look here : http://www.php.net/manual/en/function.uasort.php There is an example in the user notes. Andrey - Original Message - From: "SED" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 12, 2002 7:25 PM Subject: [PHP]

Re: [PHP] How to sort by 3rd row in an 2d-Array

2002-04-12 Thread Steve Cayford
orted list... I think > $myarray = $mynewarray; > > I wrote this off the top of my head in like three minutes so any and all > corrections would be most welcome. ;) > -Kevin > > - Original Message - > From: "SED" <[EMAIL PROTECTED]> > To: <[

Re: [PHP] How to sort by 3rd row in an 2d-Array

2002-04-12 Thread Kevin Stone
This is a terribly inneficient way of handling your situation but I believe it would work. // First we're going to make a list of all company values for($i=0; $i To: <[EMAIL PROTECTED]> Sent: Friday, April 12, 2002 10:25 AM Subject: [PHP] How to sort by 3rd row in an 2d-Array &g

[PHP] How to sort by 3rd row in an 2d-Array

2002-04-12 Thread SED
Hi, I'm trying to sort an array like following myArray[1][firstname] = "Joe"; myArray[1][lastname] = "Smith"; myArray[1][company] = "Bullock"; myArray[1][email] = "[EMAIL PROTECTED]"; myArray[2][firstname] = "Jim"; myArray[2][lastname] = "Cords"; myArray[2][company] = "Jamen"; myArray[2][email]