Jump to content

[SOLVED] Foreach with array...but don't show duplicates


DamienRoche

Recommended Posts

I have a simple array which will no doubt contain duplicates from time to time. It is within an if statement inside a function....

 

so, basically, I have:

 

foreach($arr as $var){

 

echo "$var";

 

}

 

What I want to do is have somekind of check to make sure I haven't already echoed the same var. An easier way would be to remove the duplicates first. How can I do this?

 

I've tried array_unique($arr) before the foreach but isn't working so I must be missing something..

 

Anyone care to chip in? Thanks.

Thanks for the help guys..I sussed out I should have run it through a variable. Thankfully, Mark, it's a simple array. Those multidimensional arrays are horrific. To me at least.

 

Thanks again.

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.