Re: How to pass a GET param that contains multiple items

2010-07-12 Thread Margie Roginski
Thanks, Euan! Margie On Jul 11, 2:00 am, "euan.godd...@googlemail.com" wrote: > This is a standard encode/decode situation you are descibing. Django > automatically decodes the GET string the the browser encodes. If you > need spaces, then they wil be encoded and decoded appropriately, so > don

Re: How to pass a GET param that contains multiple items

2010-07-11 Thread euan.godd...@googlemail.com
This is a standard encode/decode situation you are descibing. Django automatically decodes the GET string the the browser encodes. If you need spaces, then they wil be encoded and decoded appropriately, so don't worry about that. If you want to pass a list in the GET string, do: url?var=1&var=2&v