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 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"; } Link to comment https://forums.phpfreaks.com/topic/233438-loop-through-array/#findComment-1200363 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.