For instance:
{
“category” : {
“label” : “Category”,
“type” : “select”,
“initial” : “null”,
“options” : “dynamic:category”
},
“1st” : {
“label” : “Featured”,
“type” : “select”,
“initial” : “null”,
“options” : “dynamic:{{category}}”
},
}
In this example I’m trying to pass the value of {{category}} to my dynamic counter part in php. I have it setup to handle multiple responses based on the values from the category select. but “dynamic:{{category}}” doesn’t set properly. I’m looking for it to call something like “dynamic:6” not “dynamic:{{category}}” as a string. any help would be greatly appreciated.