[Zope] How to get the variable in an URL ?

Harry Wilkinson harryw@nipltd.com
Wed, 24 Apr 2002 10:59:56 +0100


On Wednesday 24 April 2002 11:58 am, Pascal Samuzeau wrote:
> Hello,
>
> I have a link as :
>
> <a href="http://website/folder/document?variable=try-it">Try</a>
>
> I want to get the variable in my document.
>
> I did REQUEST.form['varibale']. But it doesn't work, of cource, I
> haven't a form.
>
> What i the syntax t oget this variable???
>
> Sincerily
> PS
> --------------------------------------------------
> Oreka ! Nous sommes l'internet moins cher !
> Surfez 25% moins cher avec http://www.oreka.com

Just use REQUEST['variable'].  The request object will find it and hand it 
back.