Re: [Cppcms-users] query string
Brought to you by:
artyom-beilis
From: Joerg S. <jo...@br...> - 2015-10-01 13:42:35
|
On Wed, Sep 30, 2015 at 03:29:34PM +0700, mawan sugiyanto wrote: > Thanks Kpeo > > So, is there no load for context if i use GET method? What do you mean here? What "context"? Using either GET or POST depending on the method for a parameter is bad design, but something various web frameworks have made popular. > The next, some time I use identifier / name of field using query string > &data[x][name]=value > > Is it convert to array like PHP post method, or we must loop manually using > request().get("data[x][name]")? There is no generic mechanism for multi-level arrays because that's not a construct by either form of requests. I have no idea what PHP is doing, some name mangling internally? Joerg |