Created
December 5, 2012 15:16
-
-
Save richardegil/4216439 to your computer and use it in GitHub Desktop.
my array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array | |
( | |
[0] => Array | |
( | |
[myid] => 31 | |
[fname] => Dwayne | |
[mi] => | |
[lname] => Alexander | |
[degrees] => PHD | |
) | |
[1] => Array | |
( | |
[myid] => 28 | |
[fname] => Sam | |
[mi] => | |
[lname] => Beene | |
[degrees] => | |
) | |
[2] => Array | |
( | |
[myid] => 13 | |
[fname] => Richard | |
[mi] => E | |
[lname] => Gil | |
[degrees] => BA | |
) | |
[3] => Array | |
( | |
[myid] => 25 | |
[fname] => Carlo | |
[mi] => | |
[lname] => Gonzalex | |
[degrees] => | |
) | |
[4] => Array | |
( | |
[myid] => 23 | |
[fname] => Subi | |
[mi] => | |
[lname] => Shakya | |
[degrees] => | |
) | |
) | |
need to group by last name so it displays like this: | |
A | |
- all last names that start with A | |
B | |
- all last names that start with B | |
etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment