cgm225 Posted July 26, 2007 Share Posted July 26, 2007 If I have two arrays, lets say $albums and $times that output, for example, Array ( [0] => Album [1] => Album2 [2] => Album3 [3] => july4 [4] => Album5 [5] => Album6 ) Array ( [0] => 1183084603 [1] => 1182993795 [2] => 1183267359 [3] => 1183775545 [4] => 1185414909 [5] => 1185073583 ) If the starting order of each array has the corresponding album and time already in the same numerical spot, how can I sort both arrays by the times in the second array (so that the newest albums are first)? Thank you all in advance. Quote Link to comment Share on other sites More sharing options...
teng84 Posted July 26, 2007 Share Posted July 26, 2007 sort() Quote Link to comment Share on other sites More sharing options...
cgm225 Posted July 26, 2007 Author Share Posted July 26, 2007 nope.. array_multisort () but thanks for getting me started in the right direction Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.