[Zope-dev] zope variables!

Chris Withers chrisw@nipltd.com
Mon, 10 Sep 2001 13:27:56 +0100


Stian Jenssen wrote:
> 
> Want to read the variable i pass from the url. eg:

zope-dev is for development of not with zope, your question is better directed
to zope@zope.org.

> http://wap.test.com/test/test?id=287518
> Works well with php.

works well in zope too, but id is probably used for other stuff:

http://wap.test.com/test/test?myvar=1234

if test is DTML:

<dtml-var myvar>
<dtml-var "REQUEST['myvar']">
<dtml-var "REQUEST.form['myvar']">

...will all work.

Chris