Attribute

Hi,
I’m using scriptcase from about two week,
I did not understand how to use attributes . once I defined it in the appropriate section, How I can assign values ​​to these attributes ?
Suppose to have definend an attribuite named “test”, how can I assign it a value in event or method?
Thanks

Not quite sure what you mean but in general: if you define a php variable in one event, you cannot ‘just’ use it in another. These veriables are local to the procedure that is generated.
Field/form variables are used in events using {}. So {myfield} references the formfield ’ myfield’ . If you need to pass variables and reuse them over your application and project you need to create global varables. This is done by putting the variable between [],. i.e. [glob_birthdate]=’ 2010-02-12’ would assign a value that is available everywhere. Hope this helps you a bit.