For example:
<form action="a.asp">
<input name="bookcount" value="2" />
<input name="bookcount" value="4" />
<input type="submit" value="submit" />
</form>

I have multiple input in the form with the same name "bookcount" .
In firefox , I can successfully post them and got all of the values at the server side ( request.form("bookcount")(i) ).

But how can I post them using QNetworkAccessManager ? How to build the post data that can be processed by my server-side script ?