View Single Post
Old 01-27-2013, 09:32 AM   PM User | #1
needsomehelp
Regular Coder

 
Join Date: Oct 2009
Posts: 307
Thanks: 4
Thanked 3 Times in 3 Posts
needsomehelp can only hope to improve
unable to cycle through an array

I have created a counter of two variables for each user and trying to cycle through them so i can get the first and second variables if proving rather hard.

$mainCounters = array('userid' => '',
array( 'itemOwnerCommentCount' => 0, 'notItemOwnerCommentCount' => 0 )
);


I tried to use the foreach($newArray = $existingArray) {} but this fails with the following error... Invalid argument supplied for foreach()
Code:
foreach($mainCounter as $mainCounters) {
				?>[<? print_r($mainCounter);?>]<br><br><br><?
				//$a = $mainCounter[0];
				//$b = $mainCounter[1];
				}

How do I correctly access the array data one user at a time ?

in case it helps here is what a sample of the array may contain..

Array (
[100] => Array ( [0] => 1 [1] => 0 )
[ABC4EF] => Array ( [0] => 3 [1] => 0 )
[1] => Array ( [0] => 0 [1] => 0 )
[SDF5gH] => Array ( [0] => 0 [1] => 0 )
)

oh I know my userid is not a number, but with good reason, I have had a few ask this in the past ;-)

Last edited by needsomehelp; 01-27-2013 at 09:36 AM..
needsomehelp is offline   Reply With Quote