Hi! I'm trying to pass a variable between forms using just the post method but it still accepts the GET method. It's this possible? My code follows:
controller1:
form=crud.create(db.familia)
if form.accepts(request.vars,session):
redirect(URL(r=request,f='persona',vars=dict(ficha=request.post_vars.ficha)))
controller 2:
def persona():
form=crud.create(db.persona)
form.vars.ficha=request.vars.ficha
for any help, thanks in advance :)
regards
Dan

