OK I totally forgot how to skip arguments in PHP.
Lets say I have:
checkbox_field
(
$name,
$value = '',
$checked = false,
$compare = '',
$parameter = ''
)
How would I call this function and skip the second last argument?
checkbox_field('some name', 'some value', FALSE, '' , 'some parameter');
Would the above be correct? I can't seem to get this to work.
Thanks