Hi Ricardo, Thanks for your reply, changing 1 to "1" solved the problem.
Kind regards, Annet On Feb 13, 12:47 pm, Ricardo Pedroso <[email protected]> wrote: > On Mon, Feb 13, 2012 at 10:58 AM, Annet <[email protected]> wrote: > > elif request.args(0)==1: > > This one above is always False. Should be at least: > > elif request.args(0)=="1": > > request.args returns each arg as string. > > Ricardo

