Thanks

On Friday, October 19, 2018 at 3:38:04 PM UTC+2, sandeep patel wrote:
>
> Try this
> def index():
>     form=SQLFORM(db.vehicleLogging)
>     if form.process().accepted:
>         response.flash = T("Record Made")
>     elif form.errors:
>         response.flash = T('Error')
>     return locals()
>
> In *form.process().**accepted *does not need request.vars and session 
> arguments.
>
> Best/
> sp
>
> On Fri, Oct 19, 2018 at 6:27 PM mostwanted <godir...@gmail.com 
> <javascript:>> wrote:
>
>> Before taking my application online i was able to save information via my 
>> SQLFORM(db.logs) but after putting it online It does not save anything!
>>
>> *This is the controller code:*
>> def index():
>>     form=SQLFORM(db.vehicleLogging)
>>     if form.accepts(request.vars, session):
>>         response.flash = T("Record Made")
>>     elif form.errors:
>>         response.flash = T('Error')
>>     return locals()
>>
>> *I am using web2py version **2.17.2:* I am mentioning this but i don't 
>> know if it will help.
>>
>> Is there something wrong with my above code?
>>
>> Regards:
>>
>> Mostwanted
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+un...@googlegroups.com <javascript:>.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to