I\'m trying to create an array inside an array, using a for loop - here\'s my code:
array( \'label\' => \'Assign to user\', \'desc\' => \'C
You use foreach to access the data, not define it.
Try this:
array( 'label' => 'Assign to user', 'desc' => 'Choose a user', 'id' => $prefix.'client', 'type' => 'radio' 'options' => $clients )
If you need to change the structure of the data for 'options', do this before defining the primary array.