how do i get the total number of items in an array?
$arr = array(1,2,3,4,5,6,7,8,9,10); print count($arr);
The [man]count/man function is what you are looking for.
thanks!