HI everybody, I have this multidimensional array ($TableauNotes[$k][$j]), see image 1.
and i wanted to display duplicate values of column 6 in a new array like this (see image 2)
with this function:
function array_count_values_of($value, $TableauNotes) {
$counts = array_count_values($TableauNotes);
return $counts[$value];
}
Can you help me how to do that? Thank you very much for your help.