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
Post a Comment