emma57573 Posted August 16, 2008 Share Posted August 16, 2008 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 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 ?> Quote Link to comment Share on other sites More sharing options...
marcus Posted August 16, 2008 Share Posted August 16, 2008 What's the code previous of your while statement. Quote Link to comment Share on other sites More sharing options...
emma57573 Posted August 16, 2008 Author Share Posted August 16, 2008 Yay I fixed it!! $countarray = array_count_values($countseller); if ($countarray[$seller_id] >1 ){ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.