AndrewFerrara Posted February 3, 2011 Share Posted February 3, 2011 How do you get the values in an array and name them as variables? Lets say I want the 0 and the 2... Array ( [0] => 02.02.2011 [1] => 97% [2] => 538 [3] => 20 [4] => 63,247 (2.20) [5] => 77,639 [6] => 195,617 [7] => 09.13.2010 ) Link to comment https://forums.phpfreaks.com/topic/226534-values-in-an-array/ Share on other sites More sharing options...
Pikachu2000 Posted February 3, 2011 Share Posted February 3, 2011 $variable1 = $array[0]; $variable2 = $array[2]; Link to comment https://forums.phpfreaks.com/topic/226534-values-in-an-array/#findComment-1169225 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.