Is it possible that, a form contains multiple inputs, when submit the form, some input values go into post body while some go into the URL?
<form action=sample.php method=POST accept-charset=gbk>
<input name=a />
<input name=b />
</form>
And when submit, it POST b=someval to sample.php?a=itsval
——
I’m handling an old system. The backend read parameters some from get, some from post, and not using utf-8. No one can change its code.