[Zope] Keeping a Variable's Value: This SHOULD Be Easy

Danny William Adair danny@adair.net
Wed, 31 Oct 2001 10:10:41 +1300


> to set it. Now your variable x is available through the REQUEST object, and
> _anywhere_ beneath this assignment (or in another dtml method you are
> calling inside that code) you can use <dtml-var "REQUEST[x]"> or just
> <dtml-var x>. (the REQUEST[x] version, though longer, is the more precise

of course this has to read
REQUEST['x']