poe Posted April 12, 2011 Share Posted April 12, 2011 i have 2 arrays... first array of lastnames, second array of firstnames lastAry = array('smith', 'jones', 'reed', 'chan') firstAry = array('mary', 'chris', 'kim', joe', 'sara', 'tim', 'amy', 'fred') how do i loop through each lastnames and turn into a string with firstname so it looks like : smith | mary | chris jones | kim | joe reed | sara | tim chan | amy | fred Quote Link to comment https://forums.phpfreaks.com/topic/233438-loop-through-array/ Share on other sites More sharing options...
btherl Posted April 12, 2011 Share Posted April 12, 2011 That's an odd data structure. You can print them out like this: $lastAry = array('smith', 'jones', 'reed', 'chan'); $firstAry = array('mary', 'chris', 'kim', 'joe', 'sara', 'tim', 'amy', 'fred'); $names_count = count($lastAry); for ($i = 0; $i < $names_count; $i++) { print "{$lastAry[$i]} | {$firstAry[$i*2]} | {$firstAry[$i*2+1]}\n"; } Quote Link to comment https://forums.phpfreaks.com/topic/233438-loop-through-array/#findComment-1200363 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.