Jump to content

Foreach on a long array


Mutley

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.