I am passing an array from a form to a function on another page. What is the syntax for passing an array into a function.
example.
function add_list($item, (array)){
code...
}
$item is an id number
(array) is the array I want to pass to the function.
thx
Alex