phpscott Posted June 9, 2008 Share Posted June 9, 2008 I am trying to make a selection order array for an unknown (but no more than 12) amount of items. The resulting list for x items would be: 1 2 3 4 5 6 x (sequential up to x) x 6 5 4 3 2 1 (reverse the list from before) 2 3 4 5 6 x 1 (start with the next number and go thru the whole list) 1 x 6 5 4 3 2 (reverse the list from before) 3 4 5 6 x 1 2 (start with the next number and go thru the whole list) 2 1 x 6 5 4 3 (reverse the list from before) and so on until we have started with each number. X would be an input from the user. Thanks! Link to comment https://forums.phpfreaks.com/topic/109353-for-loop-to-fill-an-array/ Share on other sites More sharing options...
sasa Posted June 9, 2008 Share Posted June 9, 2008 play with array_shift(), array_push() and array_reverse() functions Link to comment https://forums.phpfreaks.com/topic/109353-for-loop-to-fill-an-array/#findComment-560922 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.