Forum OpenACS Development: Re: set variable into an array

Collapse
Posted by Michael Hinds on
Tcl doesn't perform substitution inside curlies (so your $ or [ ] won't work). I think you're looking for this:
array set ref [list value "$user_id $package_id" html {size 20}]
Hope you have a better glue now :)