Hi - I have created a variable with a list of choices. Is it possible to list all of the choices for that variable?
I want to use these choices in a drop-down field on a form.
					I want to use these choices in a drop-down field on a form.
<actinic:block php="true">
foreach (split(',', '<actinic:variable name="MyChoices" encoding="perl" selectable="false" />') as $item) echo "<option value="$item">$item</option>";
</actinic:block>
Comment