> Nope. It's inside the form scope, but there is no way to grab it. When I > print out the form scope using <insert variables='full' scope='form' /> > I get binary data without any parameter name attached to it, then > suddenly a 'test="test"' appears (because I provided it using a GET > parameter) and after that some binary data again. It doesn't make much > sense. >
If you just want to get some variable or the other from a form POST or GET, you can access them like: &form.variablename;, in your case &form.test; To review the available entities in a scope I'd prefer to use <emit source="values" from-scope="form"> &_.index; = &_.value; <br /> </emit> This gives a list variablename = value. /Marc
