I am able to pass a single variable to a function by using
function($variable)
but what if I have an array like of 9 or 10 things and I want to pass the whole array?
the function inputs like 10 records using array[0], array[1], array[2], etc, etc
but when I try to pass the array variable in the function
function($array) it doesnt work? Is their a different procedure to pass an array?