Jump to content

[SOLVED] Array in for loop


emma57573

Recommended Posts

I'm still having issues with this array. Ive added a new topic as the needs have changed since I first posted.

 

My array is in a for loop and every time it loops it adds a new value.

 

I want to look into the array and if the value is duplicate then I want to 'do something'

 

Ive added a count_array_values function to the array and thought it would be as simple as >1 but it seems not.

 

This is driving me mad!

 

This is what my array looks like after the count_array_values

 

array.jpg

 

and this is the code for the array:

    <? while($rst) {

$seller_id= $rst["seller_user_id"];
				  			
$countseller[]= $seller_id;


if ((array_count_values($countseller)) > 1){ ?>

                    Do What I need to do here
					   
				<? }else{ ?>
					   
	    Do What I need to do here
				<? }
                                             
          }// end while ?>

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/119936-solved-array-in-for-loop/
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.