aashcool198 Posted June 22, 2009 Share Posted June 22, 2009 I have two arrays.. one of firstname $arr_f[] and other is of lastname $arr_l[]... i am displaying the full name as.. for($i=0; $i<10; $i++){ echo $arr_f[].$arr_l[]; } But displayed names are orderless. if i sort $arr_f[] then how will i make sure that firstname and lastname are correctly displayed together. Please Help! Quote Link to comment https://forums.phpfreaks.com/topic/163247-simple-sorting-problem/ Share on other sites More sharing options...
gevans Posted June 22, 2009 Share Posted June 22, 2009 They will need some relevance to one another before they can be sorted togther. Though they are in a random order, do they have the same random order? i.e. Are the first and last names originally in the relevant order to each other? Quote Link to comment https://forums.phpfreaks.com/topic/163247-simple-sorting-problem/#findComment-861297 Share on other sites More sharing options...
aggrav8d Posted June 22, 2009 Share Posted June 22, 2009 combine your list like so: (assumes count($arr_f)==count($arr_l)) for($i=0;$i<count($arr_f);++$i) { $names[$arr_f[$i]]=$arr_l[$i]; } Then you can use asort() or ksort() to order your list and finally foreach($names as $first=>$last) { echo $first.$last; } Quote Link to comment https://forums.phpfreaks.com/topic/163247-simple-sorting-problem/#findComment-861348 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.