Hey just another quick question reagrding arrays.
is there a way to count the number of elements in my array.
so for example
my array is as so
$array = array("1", "1", "2", "3", "4", "1");
i need it to output
1 = 3
2 = 1
3 = 1
4 = 1
well along those lines any way similar to the count function in mysql.
cheers