SYNOPSIS


array getParameters(object params, char *name);

The getParameters() function retrieves an array of parameters corresponding to the name. This is useful for interating through multi-select content.

RETURN VALUES

Returns an array of values.

EXAMPLES

vals = getParameters($params, "foo");

printf("Number of foo values: %d
", sizeof(vals)); for (i = 0; i < sizeof(vals); i++) printf("Value %d: %s", i + 1, vals[i]);