Monday 19 February 2007 11:25:59 pm
May be this is an easy question!!! How can I create an associative array that looks like
Key Value
----- --------
A XYZ
B MSS C SSS without the index i.e. not like
Index Key Value
-------- ------ --------
0 A XYZ
1 B MSS 2 C SSS I wont use the arraysortoperator wrappers. I mean I want to sort the first array above using the key. If sort it using the 2nd array, I won't get the write sort.
|