Seblod PHP code, populate array from multi-select list 3 PostsMope 3 years ago2TopicAm already using PHP.I have multi-select list on my form, how do I extract the values of selected items to manipulate? 157 PostsHableur 3 years ago1Level 1Values are in a array : $fields['my_field']->values It's possible to extract the values wirth foreach foreach ($fields['my_field']->values AS $value):endif; 3 PostsMope 3 years ago0Level 2Thanks. That worked well for me