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 ?> Link to comment https://forums.phpfreaks.com/topic/119936-solved-array-in-for-loop/ 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. Link to comment https://forums.phpfreaks.com/topic/119936-solved-array-in-for-loop/#findComment-617874 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 ){ Link to comment https://forums.phpfreaks.com/topic/119936-solved-array-in-for-loop/#findComment-617878 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.