Mutley Posted July 22, 2007 Share Posted July 22, 2007 My array: $pos_array = array( 0 => array("p1_pts" => $pts_1, "user_id" => "$p1_id", "pos" => 0), 1 => array("p2_pts" => $pts_2, "user_id" => "$p2_id", "pos" => 1), 2 => array("p3_pts" => $pts_3, "user_id" => "$p3_id", "pos" => 2)); How would I do a Foreach on a long array like this? I know the basic ($pos_array as $x => $y) but not anything bigger. Thanks Link to comment https://forums.phpfreaks.com/topic/61296-foreach-on-a-long-array/ Share on other sites More sharing options...
trq Posted July 22, 2007 Share Posted July 22, 2007 <?php foreach($pos_array as $arr) { foreach($arr as $k => $v) { echo "$k = $v\n"; } } ?> Link to comment https://forums.phpfreaks.com/topic/61296-foreach-on-a-long-array/#findComment-305001 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.