symfony1 - Is there any way to set post parameters? -


is there way set post parameters?

when submit form set variable (that give value dynamically) post parameter.

is possible?

sf 1.4

yes , no. depends you're trying achieve.

post parameters in php stored in $_post super global, global array far php code concerned. following:

$_post['my_key'] = $value; 

this method can used manipulate posted values. i'd there serious issue design if need add post variables.


Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -