Hello,
is it possible to get all options (only values) from a multiple select?
My multiple select field:
TEXT_1=1
TEXT_2=2
TEXT_1=3
I have tried the following in the template:
$cck->get('field_name')->options
But than I get only this one:
TEXT_1=1||TEXT_2=2||TEXT_3=3
I want only the values, like 1,2,3. Is there an option?