Ok I am pretty sure there is a simple solution, and I am missing something on this but
lets say I have this a simple array:
Array
(
[0] => 79990
[1] => 79040
[2] => 79100
[3] => 79990
[4] => 79490
[5] => 79290
[6] => 79990
)
0, 3 and 6 are the same value
how do I mark/highlight these values on a foreach loop? result should be something like:
Array
(
[0] => *79990*
[1] => 79040
[2] => 79100
[3] => *79990*
[4] => 79490
[5] => 79290
[6] => *79990*
)
edit: typos